From ba78a11ca6f7c762333ff86f4a6f997960269563 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:58:41 -0700 Subject: [PATCH 01/14] feat: template 9 data from application and rfi --- app/backend/lib/excel_import/template_nine.ts | 393 + app/backend/lib/s3client.ts | 18 + app/next-env.d.ts | 2 +- app/schema/schema.graphql | 50556 ++++++++-------- app/server.ts | 2 + .../application_form_template_9_data.sql | 37 + .../application_form_template_9_data.sql | 7 + db/sqitch.plan | 1 + 8 files changed, 26738 insertions(+), 24278 deletions(-) create mode 100644 app/backend/lib/excel_import/template_nine.ts create mode 100644 db/deploy/tables/application_form_template_9_data.sql create mode 100644 db/revert/tables/application_form_template_9_data.sql diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts new file mode 100644 index 0000000000..ec784364a3 --- /dev/null +++ b/app/backend/lib/excel_import/template_nine.ts @@ -0,0 +1,393 @@ +import { Router } from 'express'; +import fs from 'fs'; +import XLSX, { WorkBook } from 'xlsx'; +import { performQuery } from '../graphql'; +import getAuthRole from '../../../utils/getAuthRole'; +import { getByteArrayFromS3 } from '../s3client'; + +const createTemplateNineDataMutation = ` + mutation createTemplateNineData($input: CreateApplicationFormTemplate9DataInput!) { + createApplicationFormTemplate9Data(input: $input) { + clientMutationId + } + } + `; + +const getTemplateNineQuery = ` + query getTemplateNine { + allApplications(filter: {ccbcNumber: {isNull: false}}) { + nodes { + applicationFormDataByApplicationId { + nodes { + formDataByFormDataId { + jsonData + } + } + } + rowId + } + } + } +`; + +const getTemplateNineRfiDataQuery = ` + query getTemplateNineRfiData { + allApplicationRfiData( + filter: {rfiDataByRfiDataId: {jsonData: {contains: {rfiAdditionalFiles: {geographicNames: []}}}, archivedAt: {isNull: true}}} + ) { + nodes { + rfiDataByRfiDataId { + jsonData + rfiNumber + } + applicationId + } + } + } +`; + +const findTemplateNineDataQuery = ` + query findTemplateNineDataQuery($applicationId: Int!){ + allApplicationFormTemplate9Data(filter: {applicationId: {equalTo: $applicationId}}) { + totalCount + } + } +`; + +const readTemplateNineData = ( + wb: WorkBook, + sheetName = 'Template 9 - GeoNames' + // eslint-disable-next-line consistent-return +) => { + const sheet = XLSX.utils.sheet_to_json(wb.Sheets[sheetName], { + header: 'A', + }); + + const result = { + communitiesToBeServed: 0, + indigenousCommunitiesToBeServed: 0, + totalNumberOfHouseholds: 0, + totalNumberOfIndigenousHouseholds: 0, + geoNames: [], + errors: [], + }; + if (sheet.length < 15) { + result.errors.push('Wrong number of rows on Template 9'); + return result; + } + // getting headings + for (let row = 1; row < 30; row++) { + const suspect = sheet[row]['D']; + let value; + if (suspect === undefined) continue; + if (typeof suspect !== 'string') { + value = suspect.toString(); + } else { + value = suspect; + // getting communities to be served and total households + if (value.indexOf('Number of Communities to be Served') > -1) { + const communitiesToBeServed = sheet[row]['F']; + if (typeof communitiesToBeServed !== 'number') { + result.errors.push({ + level: 'cell', + error: 'Invalid data: Number of Communities to be Served', + }); + } else { + result.communitiesToBeServed = communitiesToBeServed; + } + const totalNumberOfHouseholds = sheet[row]['P']; + if (typeof totalNumberOfHouseholds !== 'number') { + result.errors.push({ + level: 'cell', + error: 'Invalid data: Total Number of Households', + }); + } else { + result.totalNumberOfHouseholds = totalNumberOfHouseholds; + } + } + // getting indigenous communities to be served and total indigenous households + if ( + value.indexOf('Number of Indigenous Communities to be Served:') > -1 + ) { + const indigenousCommunitiesToBeServed = sheet[row]['F']; + if (typeof indigenousCommunitiesToBeServed !== 'number') { + result.errors.push({ + level: 'cell', + error: + 'Invalid data: Number of Indigenous Communities to be Served', + }); + } else { + result.indigenousCommunitiesToBeServed = + indigenousCommunitiesToBeServed; + } + const totalNumberOfIndigenousHouseholds = sheet[row]['P']; + if (typeof totalNumberOfIndigenousHouseholds !== 'number') { + result.errors.push({ + level: 'cell', + error: 'Invalid data: Total Number of Indigenous Households', + }); + } else { + result.totalNumberOfIndigenousHouseholds = + totalNumberOfIndigenousHouseholds; + } + } + } + } + + // getting geo names + let tableDetected = false; + for (let row = 5; row < sheet.length; row++) { + const suspect = sheet[row]['C']; + let value; + if (suspect === undefined) continue; + if (typeof suspect === 'string') { + value = suspect.toString(); + if (value.indexOf('Project Zone') > -1) { + tableDetected = true; + continue; + } + } + if (typeof suspect === 'number' && tableDetected === true) { + const projectZone = sheet[row]['C']; + const geoName = sheet[row]['D']; + const type = sheet[row]['E']; + const mapLink = sheet[row]['M']; + const isIndigenous = sheet[row]['N']; + const geoNameId = sheet[row]['G']; + const pointOfPresenceId = sheet[row]['O']; + const proposedSolution = sheet[row]['P']; + const households = sheet[row]['Q']; + const completed = sheet[row]['R']; + + if ( + typeof completed === 'string' && + completed.indexOf('Complete') === 0 + ) { + result.geoNames.push({ + projectZone, + geoName, + type, + mapLink, + isIndigenous, + geoNameId, + pointOfPresenceId, + proposedSolution, + households, + }); + } + } + } + if (result.geoNames.length === 0) { + result.errors.push({ + level: 'table', + error: 'Invalid data: No completed Geographic Names rows found', + }); + } + if (result.errors.length === 0) delete result.errors; + return result; +}; + +const loadTemplateNineData = async ( + wb, + sheetName = 'Template 9 - GeoNames' +) => { + const data = readTemplateNineData(wb, sheetName); + return data; +}; + +XLSX.set_fs(fs); + +const handleTemplateNine = async ( + uuid: string, + applicationId: Number, + req, + update = false +) => { + try { + // find the record already exists + const findResult = await performQuery( + findTemplateNineDataQuery, + { applicationId }, + req + ); + // if it exists, and update is false do nothing + // update should only be true for RFIs as form data is immutable + if ( + findResult.data.allApplicationFormTemplate9Data.totalCount > 0 && + !update + ) { + return null; + } + // if it does not exist, get data from S3 + // then insert it into the database + const file = await getByteArrayFromS3(uuid); + const wb = XLSX.read(file); + const result = await loadTemplateNineData(wb); + return result; + } catch (e) { + return null; + // throw new Error(`Error handling template nine: ${e}`); + } +}; + +const templateNine = Router(); + +// Must pass the uuid of the file to be imported +// into the database, it must be a valid uuid +// and a template 9 Excel file +templateNine.get('/api/template-nine/all', async (req, res) => { + const authRole = getAuthRole(req); + const pgRole = authRole?.pgRole; + const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; + + if (!isRoleAuthorized) { + return res.status(404).end(); + } + + try { + const allApplicationData = await performQuery( + getTemplateNineQuery, + {}, + req + ); + allApplicationData.data.allApplications.nodes.forEach( + async (application) => { + const applicationId = application.rowId; + const applicationData = + application?.applicationFormDataByApplicationId?.nodes[0] + ?.formDataByFormDataId?.jsonData?.templateUploads + ?.geographicNames?.[0]; + const uuid = applicationData?.uuid || null; + // if a uuid is found, handle the template + if (uuid) { + // console.log( + // `Handling template nine for application ${applicationId}` + // ); + const templateNineData = await handleTemplateNine( + uuid, + applicationId, + req + ); + if (templateNineData) { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { source: 'application' }, + applicationId, + }, + }, + }, + req + ); + } + // no uuid found, record this as an error in the database + } else { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + errors: [{ error: 'No template 9 uploaded, uuid not found' }], + source: { source: 'application' }, + applicationId, + }, + }, + }, + req + ); + } + } + ); + return res.status(200).json({ result: 'success' }); + } catch (e) { + return res.status(500).json({ e }); + } +}); + +templateNine.get('/api/template-nine/rfi/all', async (req, res) => { + const authRole = getAuthRole(req); + const pgRole = authRole?.pgRole; + const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; + + if (!isRoleAuthorized) { + return res.status(404).end(); + } + + try { + const allApplicationRfiData = await performQuery( + getTemplateNineRfiDataQuery, + {}, + req + ); + + allApplicationRfiData.data.allApplicationRfiData.nodes.forEach( + async (application) => { + const { applicationId } = application; + const applicationData = application?.rfiDataByRfiDataId?.jsonData; + const uuid = + applicationData?.rfiAdditionalFiles?.geographicNames?.[0]?.uuid; + // if a uuid is found, handle the template + if (uuid) { + const templateNineData = await handleTemplateNine( + uuid, + applicationId, + req, + true + ); + if (templateNineData) { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: application?.rfiDataByRfiDataId?.rfiNumber, + }, + applicationId, + }, + }, + }, + req + ); + } + } + } + ); + + return res.status(200).json({ result: 'success' }); + } catch (e) { + return res.status(500).json({ e }); + } +}); + +templateNine.get('/api/template-nine/:id/:uuid', async (req, res) => { + const { id, uuid } = req.params; + const applicationId = parseInt(id, 10); + const templateNineData = await handleTemplateNine(uuid, applicationId, req); + if (templateNineData) { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { source: 'application' }, + applicationId, + }, + }, + }, + req + ); + } + return res.status(200).json({ result: 'success' }); +}); + +export default templateNine; diff --git a/app/backend/lib/s3client.ts b/app/backend/lib/s3client.ts index ea572a1aee..27b62b26fa 100644 --- a/app/backend/lib/s3client.ts +++ b/app/backend/lib/s3client.ts @@ -39,6 +39,24 @@ export const getFileFromS3 = async (uuid, filename, res) => { }); }; +export const getByteArrayFromS3 = async (uuid) => { + const params = { + Bucket: AWS_S3_BUCKET, + Key: uuid, + }; + + try { + const command = new GetObjectCommand(params); + const file = await s3ClientV3sdk.send(command); + const { Body } = file; + + const byteArray = await Body.transformToByteArray(); + return byteArray; + } catch (error) { + throw new Error(`Error fetching file from S3: ${error}`); + } +}; + export const checkFileExists = async (params) => { try { const command = new HeadObjectCommand(params); diff --git a/app/next-env.d.ts b/app/next-env.d.ts index 4f11a03dc6..a4a7b3f5cf 100644 --- a/app/next-env.d.ts +++ b/app/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index db4f26fe33..b12c83525c 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -437,6 +437,42 @@ type Query implements Node { filter: ApplicationFormDataFilter ): ApplicationFormDataConnection + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + allApplicationFormTemplate9Data( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection + """ Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ @@ -1995,6 +2031,7 @@ type Query implements Node { applicationCommunityProgressReportDataByRowId(rowId: Int!): ApplicationCommunityProgressReportData applicationCommunityReportExcelDataByRowId(rowId: Int!): ApplicationCommunityReportExcelData applicationFormDataByFormDataIdAndApplicationId(formDataId: Int!, applicationId: Int!): ApplicationFormData + applicationFormTemplate9DataByRowId(rowId: Int!): ApplicationFormTemplate9Data applicationGisAssessmentHhByRowId(rowId: Int!): ApplicationGisAssessmentHh applicationGisDataByRowId(rowId: Int!): ApplicationGisData applicationInternalDescriptionByRowId(rowId: Int!): ApplicationInternalDescription @@ -2178,6 +2215,16 @@ type Query implements Node { id: ID! ): ApplicationFormData + """ + Reads a single `ApplicationFormTemplate9Data` using its globally unique `ID`. + """ + applicationFormTemplate9Data( + """ + The globally unique `ID` to be used in selecting a single `ApplicationFormTemplate9Data`. + """ + id: ID! + ): ApplicationFormTemplate9Data + """ Reads a single `ApplicationGisAssessmentHh` using its globally unique `ID`. """ @@ -2824,42 +2871,8 @@ type CcbcUser implements Node { """Reads a single `CcbcUser` that is related to this `CcbcUser`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUsersConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2878,22 +2891,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2912,22 +2925,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2946,22 +2959,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2980,22 +2993,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3014,22 +3027,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3048,22 +3061,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3082,22 +3095,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3116,22 +3129,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3150,22 +3163,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3184,22 +3199,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3218,22 +3235,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3252,22 +3271,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3286,22 +3305,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3320,22 +3339,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3368,8 +3387,10 @@ type CcbcUser implements Node { filter: FormDataFilter ): FormDataConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3388,22 +3409,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3422,22 +3445,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3456,22 +3481,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3490,22 +3515,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3524,24 +3549,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3560,24 +3583,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByUpdatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3596,24 +3619,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3632,22 +3655,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3666,22 +3691,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3715,7 +3740,7 @@ type CcbcUser implements Node { ): RfiDataConnection! """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3748,8 +3773,8 @@ type CcbcUser implements Node { filter: RfiDataFilter ): RfiDataConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3768,22 +3793,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: RfiDataFilter + ): RfiDataConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3802,22 +3827,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3836,22 +3861,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3870,22 +3895,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3904,22 +3929,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3938,22 +3963,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `RecordVersion`.""" - recordVersionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3972,24 +3997,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RecordVersion`.""" - orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RecordVersionCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RecordVersionFilter - ): RecordVersionsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4008,24 +4033,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByUpdatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4044,24 +4069,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4080,22 +4105,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4114,22 +4141,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4148,22 +4179,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4182,22 +4217,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4216,22 +4255,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4250,22 +4291,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4284,22 +4327,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4318,22 +4363,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4352,22 +4399,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4386,24 +4435,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4422,24 +4471,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4458,24 +4507,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4494,24 +4543,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4530,24 +4579,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4566,24 +4615,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4602,19 +4651,19 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" applicationSowDataByCreatedBy( @@ -4718,8 +4767,10 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4738,22 +4789,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4772,22 +4825,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4806,22 +4861,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4840,22 +4895,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4874,22 +4929,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4908,24 +4963,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4944,24 +4997,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4980,24 +5031,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5016,22 +5065,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5050,22 +5099,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5084,22 +5133,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5118,22 +5167,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5152,22 +5201,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5186,22 +5235,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5220,22 +5269,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5254,22 +5305,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5288,22 +5341,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5322,24 +5377,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5358,26 +5413,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5396,26 +5449,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5434,26 +5485,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5472,24 +5519,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5508,24 +5553,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5544,22 +5587,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5578,22 +5621,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5612,22 +5655,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5646,24 +5689,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5682,24 +5723,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5718,24 +5757,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5754,24 +5791,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5790,24 +5825,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5826,24 +5859,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5862,24 +5893,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5898,24 +5929,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5934,24 +5965,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5970,22 +6001,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6004,22 +6037,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6038,22 +6073,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6072,24 +6109,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6108,24 +6143,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6144,24 +6177,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6180,24 +6211,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6216,24 +6245,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6252,24 +6279,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6288,22 +6313,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6322,22 +6347,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6356,22 +6381,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6390,22 +6415,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6424,22 +6449,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6458,22 +6483,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6492,24 +6517,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6528,24 +6551,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6564,24 +6585,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6600,22 +6619,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `RecordVersion`.""" + recordVersionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6634,22 +6653,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RecordVersion`.""" + orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: RecordVersionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: RecordVersionFilter + ): RecordVersionsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6668,22 +6687,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6702,22 +6721,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6736,22 +6755,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6770,22 +6789,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6804,24 +6823,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6840,24 +6857,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6876,24 +6891,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6912,22 +6925,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6946,22 +6959,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6980,22 +6993,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7014,22 +7027,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7048,22 +7061,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + communitiesSourceDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CommunitiesSourceDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! + + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7436,8 +7483,10 @@ type CcbcUser implements Node { filter: ApplicationAnnouncedFilter ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7456,22 +7505,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7490,22 +7541,92 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! + + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7536,10 +7657,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7570,10 +7691,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7604,10 +7759,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7638,10 +7793,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7672,10 +7861,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7706,10 +7895,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7728,22 +7917,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7774,10 +7997,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7808,10 +8031,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7830,22 +8053,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -7864,22 +8087,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7910,10 +8133,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7932,22 +8155,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7966,22 +8189,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -8000,22 +8223,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8046,10 +8269,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8068,22 +8291,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8114,10 +8337,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8148,10 +8371,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8170,22 +8393,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8216,10 +8439,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8250,10 +8473,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8272,22 +8495,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8306,22 +8529,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8352,10 +8575,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8386,10 +8609,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8420,10 +8643,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8442,22 +8665,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8488,10 +8711,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8522,10 +8779,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8544,22 +8801,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8578,22 +8835,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8624,10 +8881,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8658,10 +8915,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8680,22 +8937,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8714,22 +8971,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8760,10 +9017,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8794,10 +9051,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8816,22 +9073,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8850,22 +9107,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8896,10 +9153,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8930,10 +9187,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8952,22 +9209,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8986,22 +9243,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9032,10 +9289,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9066,10 +9323,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9088,22 +9345,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9134,10 +9391,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9168,44 +9425,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9224,22 +9447,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9270,10 +9493,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9304,10 +9527,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9326,22 +9549,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9360,22 +9583,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9406,10 +9629,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9440,10 +9663,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9462,22 +9685,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9496,22 +9719,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9542,10 +9765,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9576,10 +9799,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9598,22 +9821,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9644,10 +9901,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9678,10 +9935,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9712,10 +9969,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9734,22 +9991,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9780,10 +10037,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9814,10 +10105,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9848,10 +10173,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9870,22 +10195,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9916,10 +10241,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9950,10 +10309,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9972,22 +10331,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10006,22 +10365,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10052,10 +10411,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10086,10 +10445,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10120,10 +10479,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10154,10 +10513,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10188,10 +10547,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10210,22 +10569,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10256,10 +10615,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -10278,22 +10637,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10312,22 +10671,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10358,10 +10717,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -10380,22 +10739,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10414,22 +10773,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10448,22 +10807,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -10482,22 +10841,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10516,22 +10875,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10550,22 +10909,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10584,22 +10943,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10618,22 +10977,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10664,10 +11023,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10686,22 +11045,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10720,22 +11079,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10766,10 +11125,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10800,10 +11159,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10834,10 +11193,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10868,10 +11227,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10902,10 +11261,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10936,10 +11295,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10970,10 +11329,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11004,10 +11363,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11038,10 +11397,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11072,10 +11431,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11106,10 +11465,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11140,10 +11499,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11174,10 +11533,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11208,10 +11567,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11242,10 +11601,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11276,10 +11635,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11310,10 +11669,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11344,10 +11703,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11378,10 +11737,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11412,10 +11771,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11434,22 +11793,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11480,10 +11839,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11514,10 +11873,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11548,10 +11941,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11582,10 +11975,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11616,10 +12043,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11638,22 +12065,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11684,10 +12111,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11718,10 +12145,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11752,10 +12179,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11774,22 +12201,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11808,22 +12235,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11854,10 +12281,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11888,10 +12349,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11910,22 +12371,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11956,10 +12417,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11990,10 +12451,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12024,10 +12485,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12046,22 +12507,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12092,10 +12553,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12126,10 +12587,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12148,22 +12609,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12194,10 +12655,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12228,10 +12689,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12250,22 +12711,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12284,22 +12745,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12330,10 +12791,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12352,22 +12813,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12386,22 +12847,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12420,22 +12881,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12454,22 +12915,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12500,10 +12961,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12522,22 +12983,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12568,10 +13029,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12602,10 +13063,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12636,10 +13097,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12670,10 +13131,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12704,10 +13165,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12738,10 +13199,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12772,10 +13233,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12806,10 +13267,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12840,10 +13301,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -12862,22 +13323,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12908,10 +13369,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12942,10 +13471,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12964,22 +13493,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13010,10 +13573,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13044,10 +13607,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13066,22 +13629,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13112,10 +13675,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13146,10 +13709,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13168,22 +13731,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13214,10 +13777,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13248,10 +13811,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13270,22 +13833,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13316,10 +13879,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13350,10 +13913,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13372,22 +13935,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13418,10 +13981,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13452,10 +14015,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13474,22 +14037,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13520,10 +14083,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13554,10 +14117,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13576,22 +14139,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -13610,22 +14173,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13656,10 +14219,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13678,22 +14241,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13712,22 +14275,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -13746,22 +14309,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13780,22 +14343,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13826,10 +14389,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13848,22 +14411,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -13882,22 +14445,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13928,10 +14491,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13962,10 +14525,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13996,10 +14559,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14030,10 +14593,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14064,10 +14627,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14098,10 +14661,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14132,10 +14695,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14166,10 +14729,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14188,22 +14751,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14234,10 +14797,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14268,10 +14831,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14290,22 +14853,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14336,10 +14899,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14370,10 +14933,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14392,22 +14955,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14438,10 +15001,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14472,10 +15035,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14494,22 +15057,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14540,10 +15103,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14574,10 +15137,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14596,22 +15159,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14642,10 +15205,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14676,10 +15239,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14698,22 +15261,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14744,10 +15307,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14778,10 +15341,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14812,10 +15375,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14846,10 +15409,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14880,44 +15443,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14948,10 +15477,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14982,10 +15511,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15004,22 +15533,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15050,10 +15579,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15084,44 +15613,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15152,10 +15647,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15174,22 +15669,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -15208,22 +15703,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15254,10 +15749,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15288,10 +15783,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15322,10 +15817,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -15344,22 +15839,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15390,44 +15885,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15458,10 +15919,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15480,22 +15941,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -15514,22 +15975,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15560,10 +16021,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15594,10 +16055,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15616,22 +16077,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15662,10 +16123,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15696,10 +16157,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15718,22 +16179,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15764,10 +16225,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15798,10 +16259,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15820,22 +16281,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15866,10 +16327,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15900,10 +16361,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15922,22 +16383,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15968,10 +16429,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16002,10 +16463,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16036,10 +16497,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -16058,22 +16519,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16104,10 +16565,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16126,22 +16587,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16160,22 +16621,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -16194,22 +16655,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16228,22 +16689,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16274,10 +16735,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16296,22 +16757,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -16330,22 +16791,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16376,10 +16837,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16410,10 +16871,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -16432,22 +16893,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16466,22 +16927,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16512,10 +16973,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16534,22 +16995,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -16568,22 +17029,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16602,22 +17063,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16636,22 +17097,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16682,10 +17143,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -16704,22 +17165,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16750,10 +17211,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16784,10 +17245,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16818,10 +17279,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16852,10 +17313,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -16874,22 +17335,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16920,10 +17381,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16954,10 +17415,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16976,22 +17437,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -17010,22 +17471,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17056,10 +17517,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17090,10 +17551,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17112,22 +17573,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -17146,22 +17607,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17192,10 +17653,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17226,10 +17687,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17248,22 +17709,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17294,10 +17755,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17328,10 +17789,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17350,22 +17811,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17396,10 +17857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17430,10 +17891,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -17452,22 +17913,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -17486,22 +17947,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17532,44 +17993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17600,10 +18027,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -17622,22 +18049,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -17656,22 +18083,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersByCbcDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17702,10 +18129,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersByCbcDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17736,10 +18163,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -17758,22 +18185,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -17792,22 +18219,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17838,10 +18265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17872,10 +18299,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -17894,22 +18321,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17940,10 +18367,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17962,22 +18389,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -17996,22 +18423,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18042,10 +18469,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18076,44 +18503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -18132,22 +18525,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18178,10 +18571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18212,44 +18605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18268,22 +18627,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18314,10 +18673,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18348,10 +18707,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18370,22 +18729,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18416,10 +18775,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18450,10 +18809,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18472,22 +18831,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18518,10 +18877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18552,10 +18911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18574,22 +18933,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18620,10 +18979,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18654,10 +19013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18676,22 +19035,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18722,10 +19081,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18756,10 +19115,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18778,22 +19137,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18824,10 +19183,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18858,10 +19217,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18880,22 +19239,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18914,22 +19273,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18960,10 +19319,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18982,22 +19341,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19016,22 +19375,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19050,22 +19409,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19084,22 +19443,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19130,10 +19489,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19152,22 +19511,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19186,22 +19545,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19232,10 +19591,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19266,10 +19625,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19288,22 +19647,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19334,10 +19693,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19368,10 +19727,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19390,22 +19749,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19436,10 +19795,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19470,10 +19829,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19492,22 +19851,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19538,10 +19897,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19572,10 +19931,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19594,22 +19953,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19640,10 +19999,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19674,10 +20033,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19696,22 +20055,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19742,10 +20101,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19776,78 +20135,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19878,10 +20169,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19912,10 +20203,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19946,10 +20237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19968,22 +20259,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20002,22 +20293,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20048,10 +20339,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20082,10 +20373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityCreatedByAndCbcId( + cbcsByCbcProjectCommunityUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20116,10 +20407,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( + communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20150,10 +20441,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20184,10 +20475,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20218,10 +20509,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityUpdatedByAndCbcId( + cbcsByCbcProjectCommunityArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20252,10 +20543,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( + communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20286,10 +20577,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20320,10 +20611,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20354,44 +20645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityArchivedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20410,22 +20667,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( + ccbcUsersByReportingGcpeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20456,10 +20713,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( + ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20490,10 +20747,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( + ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20524,10 +20781,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndArchivedBy( + ccbcUsersByReportingGcpeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20558,10 +20815,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( + ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20592,10 +20849,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20614,22 +20871,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20660,10 +20917,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20694,10 +20951,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedCreatedByAndApplicationId( + applicationsByApplicationAnnouncedUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20728,10 +20985,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20762,10 +21019,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20796,10 +21053,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedUpdatedByAndApplicationId( + applicationsByApplicationAnnouncedArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20830,10 +21087,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20864,10 +21121,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20898,10 +21155,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedArchivedByAndApplicationId( + applicationsByApplicationFormTemplate9DataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20932,10 +21189,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( + ccbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20966,10 +21223,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( + ccbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21000,4088 +21257,4649 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! -} + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection! -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. - """ - edges: [CcbcUsersEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser -} + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] -"""A location in a connection that can be used for resuming pagination.""" -scalar Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection! - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """When paginating backwards, the cursor to continue.""" - startCursor: Cursor + """Only read the last `n` values of the set.""" + last: Int - """When paginating forwards, the cursor to continue.""" - endCursor: Cursor -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -"""Methods to use when ordering `CcbcUser`.""" -enum CcbcUsersOrderBy { - NATURAL - ID_ASC - ID_DESC - SESSION_SUB_ASC - SESSION_SUB_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - EMAIL_ADDRESS_ASC - EMAIL_ADDRESS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXTERNAL_ANALYST_ASC - EXTERNAL_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A condition to be used against `CcbcUser` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CcbcUserCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `sessionSub` field.""" - sessionSub: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `externalAnalyst` field.""" - externalAnalyst: Boolean -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection! -""" -A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `emailAddress` field.""" - emailAddress: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" - ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `ccbcUsersByCreatedBy` exist.""" - ccbcUsersByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" - ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `ccbcUsersByArchivedBy` exist.""" - ccbcUsersByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `intakesByCreatedBy` relation.""" - intakesByCreatedBy: CcbcUserToManyIntakeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `intakesByCreatedBy` exist.""" - intakesByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `intakesByUpdatedBy` relation.""" - intakesByUpdatedBy: CcbcUserToManyIntakeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `intakesByUpdatedBy` exist.""" - intakesByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `intakesByArchivedBy` relation.""" - intakesByArchivedBy: CcbcUserToManyIntakeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection! +} - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Some related `applicationsByCreatedBy` exist.""" - applicationsByCreatedByExist: Boolean + """ + A list of edges which contains the `Application` and cursor to aid in pagination. + """ + edges: [ApplicationsEdge!]! - """Filter by the object’s `applicationsByUpdatedBy` relation.""" - applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Some related `applicationsByUpdatedBy` exist.""" - applicationsByUpdatedByExist: Boolean + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `applicationsByArchivedBy` relation.""" - applicationsByArchivedBy: CcbcUserToManyApplicationFilter +""" +Table containing the data associated with the CCBC respondents application +""" +type Application implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Some related `applicationsByArchivedBy` exist.""" - applicationsByArchivedByExist: Boolean + """Primary key ID for the application""" + rowId: Int! - """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" - applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter + """Reference number assigned to the application""" + ccbcNumber: String - """Some related `applicationStatusesByCreatedBy` exist.""" - applicationStatusesByCreatedByExist: Boolean + """The owner of the application, identified by its JWT sub""" + owner: String! - """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" - applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter + """The intake associated with the application, set when it is submitted""" + intakeId: Int - """Some related `applicationStatusesByArchivedBy` exist.""" - applicationStatusesByArchivedByExist: Boolean + """created by user id""" + createdBy: Int - """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" - applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter + """created at timestamp""" + createdAt: Datetime! - """Some related `applicationStatusesByUpdatedBy` exist.""" - applicationStatusesByUpdatedByExist: Boolean + """updated by user id""" + updatedBy: Int - """Filter by the object’s `attachmentsByCreatedBy` relation.""" - attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + """updated at timestamp""" + updatedAt: Datetime! - """Some related `attachmentsByCreatedBy` exist.""" - attachmentsByCreatedByExist: Boolean + """archived by user id""" + archivedBy: Int - """Filter by the object’s `attachmentsByUpdatedBy` relation.""" - attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + """archived at timestamp""" + archivedAt: Datetime - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """Program type of the project""" + program: String! - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake - """Some related `attachmentsByArchivedBy` exist.""" - attachmentsByArchivedByExist: Boolean + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser - """Filter by the object’s `formDataByCreatedBy` relation.""" - formDataByCreatedBy: CcbcUserToManyFormDataFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser - """Some related `formDataByCreatedBy` exist.""" - formDataByCreatedByExist: Boolean + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser - """Filter by the object’s `formDataByUpdatedBy` relation.""" - formDataByUpdatedBy: CcbcUserToManyFormDataFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `formDataByUpdatedBy` exist.""" - formDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `formDataByArchivedBy` relation.""" - formDataByArchivedBy: CcbcUserToManyFormDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `analystsByCreatedBy` exist.""" - analystsByCreatedByExist: Boolean + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `analystsByUpdatedBy` relation.""" - analystsByUpdatedBy: CcbcUserToManyAnalystFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """Some related `analystsByUpdatedBy` exist.""" - analystsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Filter by the object’s `analystsByArchivedBy` relation.""" - analystsByArchivedBy: CcbcUserToManyAnalystFilter + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `analystsByArchivedBy` exist.""" - analystsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" - applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationAnalystLeadsByCreatedBy` exist.""" - applicationAnalystLeadsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" - applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" - applicationAnalystLeadsByUpdatedByExist: Boolean + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" - applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """Some related `applicationAnalystLeadsByArchivedBy` exist.""" - applicationAnalystLeadsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Filter by the object’s `rfiDataByCreatedBy` relation.""" - rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `rfiDataByCreatedBy` exist.""" - rfiDataByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `rfiDataByUpdatedBy` relation.""" - rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `rfiDataByArchivedBy` exist.""" - rfiDataByArchivedByExist: Boolean + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentDataByCreatedBy` relation.""" - assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition - """Some related `assessmentDataByCreatedBy` exist.""" - assessmentDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" - assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `assessmentDataByUpdatedBy` exist.""" - assessmentDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `assessmentDataByArchivedBy` relation.""" - assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPackagesByCreatedBy` exist.""" - applicationPackagesByCreatedByExist: Boolean + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" - applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """Some related `applicationPackagesByUpdatedBy` exist.""" - applicationPackagesByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" - applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationPackagesByArchivedBy` exist.""" - applicationPackagesByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `recordVersionsByCreatedBy` relation.""" - recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `conditionalApprovalDataByCreatedBy` exist.""" - conditionalApprovalDataByCreatedByExist: Boolean + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" - conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectInformationDataCondition - """Some related `conditionalApprovalDataByUpdatedBy` exist.""" - conditionalApprovalDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" - conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `conditionalApprovalDataByArchivedBy` exist.""" - conditionalApprovalDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `gisDataByCreatedBy` relation.""" - gisDataByCreatedBy: CcbcUserToManyGisDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `gisDataByUpdatedBy` exist.""" - gisDataByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `gisDataByArchivedBy` relation.""" - gisDataByArchivedBy: CcbcUserToManyGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition - """Some related `gisDataByArchivedBy` exist.""" - gisDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" - applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationGisDataByCreatedBy` exist.""" - applicationGisDataByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" - applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationGisDataByArchivedBy` exist.""" - applicationGisDataByArchivedByExist: Boolean + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `announcementsByCreatedBy` relation.""" - announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsExcelDataCondition - """Some related `announcementsByCreatedBy` exist.""" - announcementsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Filter by the object’s `announcementsByUpdatedBy` relation.""" - announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `announcementsByUpdatedBy` exist.""" - announcementsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `announcementsByArchivedBy` relation.""" - announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" - applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnnouncementsByCreatedBy` exist.""" - applicationAnnouncementsByCreatedByExist: Boolean + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" - applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Some related `applicationAnnouncementsByUpdatedBy` exist.""" - applicationAnnouncementsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! """ - Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter + applicationCommunityReportExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationAnnouncementsByArchivedBy` exist.""" - applicationAnnouncementsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. - """ - applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" - applicationGisAssessmentHhsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. - """ - applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" - applicationGisAssessmentHhsByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityReportExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! """ - Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + applicationInternalDescriptionsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" - applicationGisAssessmentHhsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationInternalDescriptionCondition - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Filter by the object’s `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sowTab1SByCreatedBy` relation.""" - sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneDataCondition - """Some related `sowTab1SByCreatedBy` exist.""" - sowTab1SByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" - sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `sowTab1SByUpdatedBy` exist.""" - sowTab1SByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `sowTab1SByArchivedBy` relation.""" - sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `sowTab1SByArchivedBy` exist.""" - sowTab1SByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ - applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `applicationCommunityProgressReportDataByCreatedBy` exist. - """ - applicationCommunityProgressReportDataByCreatedByExist: Boolean + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. - """ - applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """ - Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. - """ - applicationCommunityProgressReportDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! - """ - Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. - """ - applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `applicationCommunityProgressReportDataByArchivedBy` exist. - """ - applicationCommunityProgressReportDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. - """ - applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" - applicationCommunityReportExcelDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. - """ - applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" - applicationCommunityReportExcelDataByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! """ - Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" - applicationCommunityReportExcelDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" - applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationClaimsDataByCreatedBy` exist.""" - applicationClaimsDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" - applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationClaimsDataByUpdatedBy` exist.""" - applicationClaimsDataByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" - applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition - """Some related `applicationClaimsDataByArchivedBy` exist.""" - applicationClaimsDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """ - Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + applicationProjectTypesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" - applicationClaimsExcelDataByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. - """ - applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" - applicationClaimsExcelDataByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. - """ - applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" - applicationClaimsExcelDataByArchivedByExist: Boolean + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" - applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationProjectTypeCondition - """Some related `applicationMilestoneDataByCreatedBy` exist.""" - applicationMilestoneDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" - applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationMilestoneDataByUpdatedBy` exist.""" - applicationMilestoneDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. - """ - applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationMilestoneDataByArchivedBy` exist.""" - applicationMilestoneDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. - """ - applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" - applicationMilestoneExcelDataByCreatedByExist: Boolean + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. - """ - applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" - applicationMilestoneExcelDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! """ - Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - - """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" - applicationMilestoneExcelDataByArchivedByExist: Boolean - - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" - cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcProjectsByCreatedBy` exist.""" - cbcProjectsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" - cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcProjectsByUpdatedBy` exist.""" - cbcProjectsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" - cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcProjectsByArchivedBy` exist.""" - cbcProjectsByArchivedByExist: Boolean + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. - """ - applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition - """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" - applicationInternalDescriptionsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" - applicationInternalDescriptionsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. - """ - applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" - applicationInternalDescriptionsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" - applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationProjectTypesByCreatedBy` exist.""" - applicationProjectTypesByCreatedByExist: Boolean + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" - applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Some related `applicationProjectTypesByUpdatedBy` exist.""" - applicationProjectTypesByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" - applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationProjectTypesByArchivedBy` exist.""" - applicationProjectTypesByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" - emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `emailRecordsByCreatedBy` exist.""" - emailRecordsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" - emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `emailRecordsByUpdatedBy` exist.""" - emailRecordsByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `emailRecordsByArchivedBy` relation.""" - emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """Some related `emailRecordsByArchivedBy` exist.""" - emailRecordsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Filter by the object’s `notificationsByCreatedBy` relation.""" - notificationsByCreatedBy: CcbcUserToManyNotificationFilter + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `notificationsByCreatedBy` exist.""" - notificationsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `notificationsByUpdatedBy` relation.""" - notificationsByUpdatedBy: CcbcUserToManyNotificationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `notificationsByUpdatedBy` exist.""" - notificationsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `notificationsByArchivedBy` relation.""" - notificationsByArchivedBy: CcbcUserToManyNotificationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `notificationsByArchivedBy` exist.""" - notificationsByArchivedByExist: Boolean + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. - """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. - """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcsByCreatedBy` relation.""" - cbcsByCreatedBy: CcbcUserToManyCbcFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcsByCreatedBy` exist.""" - cbcsByCreatedByExist: Boolean + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcsByUpdatedBy` relation.""" - cbcsByUpdatedBy: CcbcUserToManyCbcFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """Some related `cbcsByUpdatedBy` exist.""" - cbcsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Filter by the object’s `cbcsByArchivedBy` relation.""" - cbcsByArchivedBy: CcbcUserToManyCbcFilter + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcsByArchivedBy` exist.""" - cbcsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcDataByCreatedBy` relation.""" - cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcDataByCreatedBy` exist.""" - cbcDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcDataByUpdatedBy` relation.""" - cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcDataByUpdatedBy` exist.""" - cbcDataByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcDataByArchivedBy` relation.""" - cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition - """Some related `cbcDataByArchivedBy` exist.""" - cbcDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. """ - cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + applicationFormTemplate9DataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" - cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" - cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. - """ - cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" - cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" - cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition - """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" - cbcDataChangeReasonsByCreatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" - cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" - cbcDataChangeReasonsByUpdatedByExist: Boolean + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" - cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" - cbcDataChangeReasonsByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" - communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `communitiesSourceDataByCreatedBy` exist.""" - communitiesSourceDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" - communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Some related `communitiesSourceDataByUpdatedBy` exist.""" - communitiesSourceDataByUpdatedByExist: Boolean + """ + computed column to return space separated list of amendment numbers for a change request + """ + amendmentNumbers: String - """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" - communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter + """Computed column to return analyst lead of an application""" + analystLead: String - """Some related `communitiesSourceDataByArchivedBy` exist.""" - communitiesSourceDataByArchivedByExist: Boolean + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + announced: Boolean - """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" - cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" - cbcProjectCommunitiesByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" - cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" - cbcProjectCommunitiesByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" - cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" - cbcProjectCommunitiesByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" - reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Some related `reportingGcpesByCreatedBy` exist.""" - reportingGcpesByCreatedByExist: Boolean + """Computed column to get assessment notifications by assessment type""" + assessmentNotifications( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" - reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `reportingGcpesByUpdatedBy` exist.""" - reportingGcpesByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" - reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `reportingGcpesByArchivedBy` exist.""" - reportingGcpesByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" - applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! - """Some related `applicationAnnouncedsByCreatedBy` exist.""" - applicationAnnouncedsByCreatedByExist: Boolean + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData - """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" - applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter + """Computed column to return external status of an application""" + externalStatus: String - """Some related `applicationAnnouncedsByUpdatedBy` exist.""" - applicationAnnouncedsByUpdatedByExist: Boolean + """Computed column to display form_data""" + formData: FormData - """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" - applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh - """Some related `applicationAnnouncedsByArchivedBy` exist.""" - applicationAnnouncedsByArchivedByExist: Boolean + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData - """Filter by the object’s `keycloakJwtsBySub` relation.""" - keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean - """Some related `keycloakJwtsBySub` exist.""" - keycloakJwtsBySubExist: Boolean + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Computed column to display organization name from json data""" + organizationName: String - """Checks for all expressions in this list.""" - and: [CcbcUserFilter!] + """ + Computed column to return the application announced status for an application + """ + package: Int - """Checks for any expressions in this list.""" - or: [CcbcUserFilter!] + """Computed column to return project information data""" + projectInformation: ProjectInformationData - """Negates the expression.""" - not: CcbcUserFilter -} + """Computed column to display the project name""" + projectName: String -""" -A filter to be used against Int fields. All fields are combined with a logical ‘and.’ -""" -input IntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Computed column to return last RFI for an application""" + rfi: RfiData - """Equal to the specified value.""" - equalTo: Int + """Computed column to return status of an application""" + status: String - """Not equal to the specified value.""" - notEqualTo: Int + """Computed column to return the order of the status""" + statusOrder: Int """ - Not equal to the specified value, treating null like an ordinary value. + Computed column to return the status order with the status name appended for sorting and filtering """ - distinctFrom: Int + statusSortFilter: String + zone: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Int + """ + Computed column to get single lowest zone from json data, used for sorting + """ + zones: [Int] - """Included in the specified list.""" - in: [Int!] + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [Int!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Int -} + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against String fields. All fields are combined with a logical ‘and.’ -""" -input StringFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition - """Equal to the specified value.""" - equalTo: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! - """Not equal to the specified value.""" - notEqualTo: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: String + """Only read the last `n` values of the set.""" + last: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Included in the specified list.""" - in: [String!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not included in the specified list.""" - notIn: [String!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than the specified value.""" - lessThan: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Less than or equal to the specified value.""" - lessThanOrEqualTo: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than the specified value.""" - greaterThan: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contains the specified string (case-sensitive).""" - includes: String + """Only read the last `n` values of the set.""" + last: Int - """Does not contain the specified string (case-sensitive).""" - notIncludes: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Contains the specified string (case-insensitive).""" - includesInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Does not contain the specified string (case-insensitive).""" - notIncludesInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Starts with the specified string (case-sensitive).""" - startsWith: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Does not start with the specified string (case-sensitive).""" - notStartsWith: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Starts with the specified string (case-insensitive).""" - startsWithInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! - """Does not start with the specified string (case-insensitive).""" - notStartsWithInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Ends with the specified string (case-sensitive).""" - endsWith: String + """Only read the last `n` values of the set.""" + last: Int - """Does not end with the specified string (case-sensitive).""" - notEndsWith: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Ends with the specified string (case-insensitive).""" - endsWithInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Does not end with the specified string (case-insensitive).""" - notEndsWithInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - like: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLike: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - likeInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """ - Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLikeInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Equal to the specified value (case-insensitive).""" - equalToInsensitive: String + """Only read the last `n` values of the set.""" + last: Int - """Not equal to the specified value (case-insensitive).""" - notEqualToInsensitive: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Not equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - distinctFromInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - notDistinctFromInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Included in the specified list (case-insensitive).""" - inInsensitive: [String!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not included in the specified list (case-insensitive).""" - notInInsensitive: [String!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Less than the specified value (case-insensitive).""" - lessThanInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! - """Less than or equal to the specified value (case-insensitive).""" - lessThanOrEqualToInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Greater than the specified value (case-insensitive).""" - greaterThanInsensitive: String + """Only read the last `n` values of the set.""" + last: Int - """Greater than or equal to the specified value (case-insensitive).""" - greaterThanOrEqualToInsensitive: String -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ -""" -input DatetimeFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! - """Included in the specified list.""" - in: [Datetime!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [Datetime!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Datetime -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ -""" -input BooleanFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value.""" - equalTo: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """Not equal to the specified value.""" - notEqualTo: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Included in the specified list.""" - in: [Boolean!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not included in the specified list.""" - notIn: [Boolean!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than the specified value.""" - lessThan: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than the specified value.""" - greaterThan: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Boolean -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCcbcUserFilter { - """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CcbcUserFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `openTimestamp` field.""" - openTimestamp: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `closeTimestamp` field.""" - closeTimestamp: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationNumberSeqName` field.""" - applicationNumberSeqName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `counterId` field.""" - counterId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `hidden` field.""" - hidden: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `hiddenCode` field.""" - hiddenCode: UUIDFilter + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `rollingIntake` field.""" - rollingIntake: BooleanFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GisDataCondition - """Filter by the object’s `applicationsByIntakeId` relation.""" - applicationsByIntakeId: IntakeToManyApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """Some related `applicationsByIntakeId` exist.""" - applicationsByIntakeIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `gaplessCounterByCounterId` relation.""" - gaplessCounterByCounterId: GaplessCounterFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! - """A related `gaplessCounterByCounterId` exists.""" - gaplessCounterByCounterIdExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [IntakeFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [IntakeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: IntakeFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ -""" -input UUIDFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: UUID + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: UUID + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: UUID + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: UUID + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Included in the specified list.""" - in: [UUID!] + """Only read the last `n` values of the set.""" + last: Int - """Not included in the specified list.""" - notIn: [UUID!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than the specified value.""" - lessThan: UUID + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: UUID + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than the specified value.""" - greaterThan: UUID + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: UUID -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). -""" -scalar UUID + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcNumber` field.""" - ccbcNumber: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `owner` field.""" - owner: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `intakeId` field.""" - intakeId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `program` field.""" - program: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `amendmentNumbers` field.""" - amendmentNumbers: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `analystLead` field.""" - analystLead: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `analystStatus` field.""" - analystStatus: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `externalStatus` field.""" - externalStatus: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `hasRfiOpen` field.""" - hasRfiOpen: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `intakeNumber` field.""" - intakeNumber: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `internalDescription` field.""" - internalDescription: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `organizationName` field.""" - organizationName: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `package` field.""" - package: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `projectName` field.""" - projectName: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `status` field.""" - status: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `statusSortFilter` field.""" - statusSortFilter: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `zone` field.""" - zone: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `zones` field.""" - zones: IntListFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusesByApplicationId` relation.""" - applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationStatusesByApplicationId` exist.""" - applicationStatusesByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `attachmentsByApplicationId` relation.""" - attachmentsByApplicationId: ApplicationToManyAttachmentFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `attachmentsByApplicationId` exist.""" - attachmentsByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationFormDataByApplicationId` relation.""" - applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationFormDataByApplicationId` exist.""" - applicationFormDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. - """ - applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByApplicationId` exist.""" - applicationAnalystLeadsByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" - applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationRfiDataByApplicationId` exist.""" - applicationRfiDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `assessmentDataByApplicationId` relation.""" - assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `assessmentDataByApplicationId` exist.""" - assessmentDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationPackagesByApplicationId` relation.""" - applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationPackagesByApplicationId` exist.""" - applicationPackagesByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `conditionalApprovalDataByApplicationId` relation. - """ - conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `conditionalApprovalDataByApplicationId` exist.""" - conditionalApprovalDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationGisDataByApplicationId` relation.""" - applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationGisDataByApplicationId` exist.""" - applicationGisDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! - """ - Filter by the object’s `applicationAnnouncementsByApplicationId` relation. - """ - applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationAnnouncementsByApplicationId` exist.""" - applicationAnnouncementsByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. - """ - applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" - applicationGisAssessmentHhsByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationSowDataByApplicationId` relation.""" - applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationSowDataByApplicationId` exist.""" - applicationSowDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `projectInformationDataByApplicationId` relation. - """ - projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `projectInformationDataByApplicationId` exist.""" - projectInformationDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `changeRequestDataByApplicationId` relation.""" - changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `changeRequestDataByApplicationId` exist.""" - changeRequestDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. - """ - applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `applicationCommunityProgressReportDataByApplicationId` exist. - """ - applicationCommunityProgressReportDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. - """ - applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `applicationCommunityReportExcelDataByApplicationId` exist. - """ - applicationCommunityReportExcelDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationClaimsDataByApplicationId` relation. - """ - applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationClaimsDataByApplicationId` exist.""" - applicationClaimsDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """ - Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. - """ - applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationClaimsExcelDataByApplicationId` exist.""" - applicationClaimsExcelDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationMilestoneDataByApplicationId` relation. - """ - applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationMilestoneDataByApplicationId` exist.""" - applicationMilestoneDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. - """ - applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" - applicationMilestoneExcelDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. - """ - applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationInternalDescriptionsByApplicationId` exist.""" - applicationInternalDescriptionsByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! - """ - Filter by the object’s `applicationProjectTypesByApplicationId` relation. - """ - applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationProjectTypesByApplicationId` exist.""" - applicationProjectTypesByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `notificationsByApplicationId` relation.""" - notificationsByApplicationId: ApplicationToManyNotificationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `notificationsByApplicationId` exist.""" - notificationsByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationAnnouncedsByApplicationId` relation. - """ - applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationAnnouncedsByApplicationId` exist.""" - applicationAnnouncedsByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `intakeByIntakeId` relation.""" - intakeByIntakeId: IntakeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `intakeByIntakeId` exists.""" - intakeByIntakeIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ApplicationFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ -""" -input IntListFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: [Int] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [Int] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! - """Less than the specified value.""" - lessThan: [Int] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [Int] + """Only read the last `n` values of the set.""" + last: Int - """Greater than the specified value.""" - greaterThan: [Int] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [Int] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Contains the specified list of values.""" - contains: [Int] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Contained by the specified list of values.""" - containedBy: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Overlaps the specified list of values.""" - overlaps: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Any array item is equal to the specified value.""" - anyEqualTo: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Any array item is not equal to the specified value.""" - anyNotEqualTo: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Any array item is less than the specified value.""" - anyLessThan: Int + """Only read the last `n` values of the set.""" + last: Int - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Any array item is greater than the specified value.""" - anyGreaterThan: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: Int -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter - - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `status` field.""" - status: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: ApplicationStatusFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `file` field.""" - file: UUIDFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `fileName` field.""" - fileName: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `fileType` field.""" - fileType: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. - """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: AttachmentFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: ApplicationStatusTypeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormDataFilter { - """Filter by the object’s `formDataId` field.""" - formDataId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `formDataByFormDataId` relation.""" - formDataByFormDataId: FormDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationFormDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationFormDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: ApplicationFormDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `lastEditedPage` field.""" - lastEditedPage: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `formSchemaId` field.""" - formSchemaId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `reasonForChange` field.""" - reasonForChange: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `isEditable` field.""" - isEditable: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationFormDataByFormDataId` relation.""" - applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationFormDataByFormDataId` exist.""" - applicationFormDataByFormDataIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. - """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" - formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `formByFormSchemaId` relation.""" - formByFormSchemaId: FormFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `formByFormSchemaId` exists.""" - formByFormSchemaIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for all expressions in this list.""" - and: [FormDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! - """Checks for any expressions in this list.""" - or: [FormDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: FormDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ -""" -input JSONFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value.""" - equalTo: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not equal to the specified value.""" - notEqualTo: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Included in the specified list.""" - in: [JSON!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! - """Not included in the specified list.""" - notIn: [JSON!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than the specified value.""" - lessThan: JSON + """Only read the last `n` values of the set.""" + last: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than the specified value.""" - greaterThan: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Contains the specified JSON.""" - contains: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Contains the specified key.""" - containsKey: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Contains all of the specified keys.""" - containsAllKeys: [String!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! - """Contains any of the specified keys.""" - containsAnyKeys: [String!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contained by the specified JSON.""" - containedBy: JSON -} + """Only read the last `n` values of the set.""" + last: Int -""" -A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). -""" -scalar JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" - formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `formDataByFormDataStatusTypeId` exist.""" - formDataByFormDataStatusTypeIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [FormDataStatusTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [FormDataStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: FormDataStatusTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! -""" -A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `slug` field.""" - slug: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `jsonSchema` field.""" - jsonSchema: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `formType` field.""" - formType: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `formDataByFormSchemaId` relation.""" - formDataByFormSchemaId: FormToManyFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `formDataByFormSchemaId` exist.""" - formDataByFormSchemaIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `formTypeByFormType` relation.""" - formTypeByFormType: FormTypeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! - """A related `formTypeByFormType` exists.""" - formTypeByFormTypeExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [FormFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [FormFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: FormFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `description` field.""" - description: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formsByFormType` relation.""" - formsByFormType: FormTypeToManyFormFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `formsByFormType` exist.""" - formsByFormTypeExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [FormTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [FormTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: FormTypeFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeToManyFormFilter { - """ - Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """ - No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter - - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationAnalystLeadFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `active` field.""" - active: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `email` field.""" - email: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [AnalystFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [AnalystFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: AnalystFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationRfiDataFilter { - """Filter by the object’s `rfiDataId` field.""" - rfiDataId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `rfiDataByRfiDataId` relation.""" - rfiDataByRfiDataId: RfiDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationRfiDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationRfiDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationRfiDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `rfiNumber` field.""" - rfiNumber: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" - applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationRfiDataByRfiDataId` exist.""" - applicationRfiDataByRfiDataIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """ - Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. - """ - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" - rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! - """Checks for all expressions in this list.""" - and: [RfiDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [RfiDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: RfiDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" - rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `rfiDataByRfiDataStatusTypeId` exist.""" - rfiDataByRfiDataStatusTypeIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [RfiDataStatusTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [RfiDataStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: RfiDataStatusTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentDataType` field.""" - assessmentDataType: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" - assessmentTypeByAssessmentDataType: AssessmentTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition - """A related `assessmentTypeByAssessmentDataType` exists.""" - assessmentTypeByAssessmentDataTypeExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [AssessmentDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [AssessmentDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """Negates the expression.""" - not: AssessmentDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" - assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `assessmentDataByAssessmentDataType` exist.""" - assessmentDataByAssessmentDataTypeExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [AssessmentTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [AssessmentTypeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: AssessmentTypeFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPackageFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `package` field.""" - package: IntFilter + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! - """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: ApplicationPackageFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ConditionalApprovalDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ConditionalApprovalDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Checks for any expressions in this list.""" - or: [ConditionalApprovalDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! - """Negates the expression.""" - not: ConditionalApprovalDataFilter -} + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `batchId` field.""" - batchId: IntFilter + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `gisDataByBatchId` relation.""" - gisDataByBatchId: GisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition - """A related `gisDataByBatchId` exists.""" - gisDataByBatchIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ApplicationGisDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationGisDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationGisDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationGisDataByBatchId` relation.""" - applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationGisDataByBatchId` exist.""" - applicationGisDataByBatchIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [GisDataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [GisDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: GisDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnnouncementFilter { - """Filter by the object’s `announcementId` field.""" - announcementId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `isPrimary` field.""" - isPrimary: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `announcementByAnnouncementId` relation.""" - announcementByAnnouncementId: AnnouncementFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncementFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncementFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationAnnouncementFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input AnnouncementFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcNumbers` field.""" - ccbcNumbers: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. - """ - applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter - - """Some related `applicationAnnouncementsByAnnouncementId` exist.""" - applicationAnnouncementsByAnnouncementIdExist: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [AnnouncementFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [AnnouncementFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: AnnouncementFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection! } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +Table containing intake numbers and their respective open and closing dates """ -input AnnouncementToManyApplicationAnnouncementFilter { +type Intake implements Node { """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: ApplicationAnnouncementFilter + id: ID! - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Unique ID for each intake number""" + rowId: Int! - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Open date and time for an intake number""" + openTimestamp: Datetime! -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter + """Close date and time for an intake number""" + closeTimestamp: Datetime! - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + The name of the sequence used to generate CCBC ids. It is added via a trigger """ - none: ApplicationGisAssessmentHhFilter -} - -""" -A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisAssessmentHhFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `eligible` field.""" - eligible: FloatFilter - - """Filter by the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: FloatFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + applicationNumberSeqName: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """created by user id""" + createdBy: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """created at timestamp""" + createdAt: Datetime! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """updated by user id""" + updatedBy: Int - """Checks for all expressions in this list.""" - and: [ApplicationGisAssessmentHhFilter!] + """updated at timestamp""" + updatedAt: Datetime! - """Checks for any expressions in this list.""" - or: [ApplicationGisAssessmentHhFilter!] + """archived by user id""" + archivedBy: Int - """Negates the expression.""" - not: ApplicationGisAssessmentHhFilter -} + """archived at timestamp""" + archivedAt: Datetime -""" -A filter to be used against Float fields. All fields are combined with a logical ‘and.’ -""" -input FloatFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + The counter_id used by the gapless_counter to generate a gapless intake id """ - isNull: Boolean + counterId: Int - """Equal to the specified value.""" - equalTo: Float + """A description of the intake""" + description: String - """Not equal to the specified value.""" - notEqualTo: Float + """A column to denote whether the intake is visible to the public""" + hidden: Boolean """ - Not equal to the specified value, treating null like an ordinary value. + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden """ - distinctFrom: Float - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Float - - """Included in the specified list.""" - in: [Float!] - - """Not included in the specified list.""" - notIn: [Float!] + hiddenCode: UUID - """Less than the specified value.""" - lessThan: Float + """A column to denote whether the intake is a rolling intake""" + rollingIntake: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Float + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser - """Greater than the specified value.""" - greaterThan: Float + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Float -} + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `isAmendment` field.""" - isAmendment: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab2SBySowId` relation.""" - sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab2SBySowId` exist.""" - sowTab2SBySowIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `sowTab1SBySowId` relation.""" - sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! - """Some related `sowTab1SBySowId` exist.""" - sowTab1SBySowIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab7SBySowId` relation.""" - sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab7SBySowId` exist.""" - sowTab7SBySowIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab8SBySowId` relation.""" - sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab8SBySowId` exist.""" - sowTab8SBySowIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationSowDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationSowDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: ApplicationSowDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! } """ -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). """ -input ApplicationSowDataToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter - - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter +scalar UUID +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - none: SowTab2Filter -} + id: ID! -""" -A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab2Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Primary key for the gapless counter""" + rowId: Int! - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Primary key for the gapless counter""" + counter: Int! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for all expressions in this list.""" - and: [SowTab2Filter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! - """Checks for any expressions in this list.""" - or: [SowTab2Filter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: SowTab2Filter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab1Filter { - """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab1Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab1Filter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab1Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +"""A connection to a list of `Intake` values.""" +type IntakesConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A list of edges which contains the `Intake` and cursor to aid in pagination. + """ + edges: [IntakesEdge!]! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The count of *all* `Intake` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter +"""A `Intake` edge in the connection.""" +type IntakesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The `Intake` at the end of the edge.""" + node: Intake +} - """Checks for all expressions in this list.""" - and: [SowTab1Filter!] +"""A location in a connection that can be used for resuming pagination.""" +scalar Cursor - """Checks for any expressions in this list.""" - or: [SowTab1Filter!] +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! - """Negates the expression.""" - not: SowTab1Filter -} + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter + """When paginating backwards, the cursor to continue.""" + startCursor: Cursor - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """When paginating forwards, the cursor to continue.""" + endCursor: Cursor +} - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter +"""Methods to use when ordering `Intake`.""" +enum IntakesOrderBy { + NATURAL + ID_ASC + ID_DESC + OPEN_TIMESTAMP_ASC + OPEN_TIMESTAMP_DESC + CLOSE_TIMESTAMP_ASC + CLOSE_TIMESTAMP_DESC + CCBC_INTAKE_NUMBER_ASC + CCBC_INTAKE_NUMBER_DESC + APPLICATION_NUMBER_SEQ_NAME_ASC + APPLICATION_NUMBER_SEQ_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + COUNTER_ID_ASC + COUNTER_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + HIDDEN_ASC + HIDDEN_DESC + HIDDEN_CODE_ASC + HIDDEN_CODE_DESC + ROLLING_INTAKE_ASC + ROLLING_INTAKE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab7Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Checks for equality with the object’s `applicationNumberSeqName` field. + """ + applicationNumberSeqName: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Checks for all expressions in this list.""" - and: [SowTab7Filter!] + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Checks for any expressions in this list.""" - or: [SowTab7Filter!] + """Checks for equality with the object’s `counterId` field.""" + counterId: Int - """Negates the expression.""" - not: SowTab7Filter -} + """Checks for equality with the object’s `description` field.""" + description: String -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """Checks for equality with the object’s `hidden` field.""" + hidden: Boolean - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """Checks for equality with the object’s `hiddenCode` field.""" + hiddenCode: UUID - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter + """Checks for equality with the object’s `rollingIntake` field.""" + rollingIntake: Boolean } """ -A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ """ -input SowTab8Filter { +input IntakeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Filter by the object’s `openTimestamp` field.""" + openTimestamp: DatetimeFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `closeTimestamp` field.""" + closeTimestamp: DatetimeFilter + + """Filter by the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: IntFilter + + """Filter by the object’s `applicationNumberSeqName` field.""" + applicationNumberSeqName: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25101,11 +25919,26 @@ input SowTab8Filter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Filter by the object’s `counterId` field.""" + counterId: IntFilter - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `hidden` field.""" + hidden: BooleanFilter + + """Filter by the object’s `hiddenCode` field.""" + hiddenCode: UUIDFilter + + """Filter by the object’s `rollingIntake` field.""" + rollingIntake: BooleanFilter + + """Filter by the object’s `applicationsByIntakeId` relation.""" + applicationsByIntakeId: IntakeToManyApplicationFilter + + """Some related `applicationsByIntakeId` exist.""" + applicationsByIntakeIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25125,400 +25958,357 @@ input SowTab8Filter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `gaplessCounterByCounterId` relation.""" + gaplessCounterByCounterId: GaplessCounterFilter + + """A related `gaplessCounterByCounterId` exists.""" + gaplessCounterByCounterIdExists: Boolean + """Checks for all expressions in this list.""" - and: [SowTab8Filter!] + and: [IntakeFilter!] """Checks for any expressions in this list.""" - or: [SowTab8Filter!] + or: [IntakeFilter!] """Negates the expression.""" - not: SowTab8Filter + not: IntakeFilter } """ -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyProjectInformationDataFilter { +input IntFilter { """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ProjectInformationDataFilter + isNull: Boolean - """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectInformationDataFilter + """Equal to the specified value.""" + equalTo: Int + + """Not equal to the specified value.""" + notEqualTo: Int """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ProjectInformationDataFilter -} - -""" -A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ -""" -input ProjectInformationDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + distinctFrom: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Included in the specified list.""" + in: [Int!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Not included in the specified list.""" + notIn: [Int!] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than the specified value.""" + lessThan: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than the specified value.""" + greaterThan: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Int +} - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter +""" +A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ +""" +input DatetimeFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Equal to the specified value.""" + equalTo: Datetime - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Not equal to the specified value.""" + notEqualTo: Datetime - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Datetime - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Datetime - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Included in the specified list.""" + in: [Datetime!] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Not included in the specified list.""" + notIn: [Datetime!] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Less than the specified value.""" + lessThan: Datetime - """Checks for all expressions in this list.""" - and: [ProjectInformationDataFilter!] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Datetime - """Checks for any expressions in this list.""" - or: [ProjectInformationDataFilter!] + """Greater than the specified value.""" + greaterThan: Datetime - """Negates the expression.""" - not: ProjectInformationDataFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Datetime } """ -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against String fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyChangeRequestDataFilter { +input StringFilter { """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ChangeRequestDataFilter + isNull: Boolean - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Equal to the specified value.""" + equalTo: String + + """Not equal to the specified value.""" + notEqualTo: String """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ChangeRequestDataFilter -} + distinctFrom: String -""" -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ChangeRequestDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: String - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Included in the specified list.""" + in: [String!] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Not included in the specified list.""" + notIn: [String!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than the specified value.""" + lessThan: String - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: String - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than the specified value.""" + greaterThan: String - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: String - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Contains the specified string (case-sensitive).""" + includes: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Does not contain the specified string (case-sensitive).""" + notIncludes: String - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Contains the specified string (case-insensitive).""" + includesInsensitive: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Does not contain the specified string (case-insensitive).""" + notIncludesInsensitive: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Starts with the specified string (case-sensitive).""" + startsWith: String - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Does not start with the specified string (case-sensitive).""" + notStartsWith: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Starts with the specified string (case-insensitive).""" + startsWithInsensitive: String - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Does not start with the specified string (case-insensitive).""" + notStartsWithInsensitive: String - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Ends with the specified string (case-sensitive).""" + endsWith: String - """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + """Does not end with the specified string (case-sensitive).""" + notEndsWith: String - """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + """Ends with the specified string (case-insensitive).""" + endsWithInsensitive: String - """Negates the expression.""" - not: ChangeRequestDataFilter -} + """Does not end with the specified string (case-insensitive).""" + notEndsWithInsensitive: String -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityProgressReportDataFilter { """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - every: ApplicationCommunityProgressReportDataFilter + like: String """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - some: ApplicationCommunityProgressReportDataFilter + notLike: String """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - none: ApplicationCommunityProgressReportDataFilter -} - -""" -A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationCommunityProgressReportDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter - - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + likeInsensitive: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLikeInsensitive: String - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Equal to the specified value (case-insensitive).""" + equalToInsensitive: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Not equal to the specified value (case-insensitive).""" + notEqualToInsensitive: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + distinctFromInsensitive: String - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + notDistinctFromInsensitive: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Included in the specified list (case-insensitive).""" + inInsensitive: [String!] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Not included in the specified list (case-insensitive).""" + notInInsensitive: [String!] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Less than the specified value (case-insensitive).""" + lessThanInsensitive: String - """Checks for all expressions in this list.""" - and: [ApplicationCommunityProgressReportDataFilter!] + """Less than or equal to the specified value (case-insensitive).""" + lessThanOrEqualToInsensitive: String - """Checks for any expressions in this list.""" - or: [ApplicationCommunityProgressReportDataFilter!] + """Greater than the specified value (case-insensitive).""" + greaterThanInsensitive: String - """Negates the expression.""" - not: ApplicationCommunityProgressReportDataFilter + """Greater than or equal to the specified value (case-insensitive).""" + greaterThanOrEqualToInsensitive: String } """ -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationCommunityReportExcelDataFilter { +input BooleanFilter { """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationCommunityReportExcelDataFilter + isNull: Boolean - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Equal to the specified value.""" + equalTo: Boolean + + """Not equal to the specified value.""" + notEqualTo: Boolean """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ApplicationCommunityReportExcelDataFilter -} - -""" -A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + distinctFrom: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Included in the specified list.""" + in: [Boolean!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Not included in the specified list.""" + notIn: [Boolean!] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than the specified value.""" + lessThan: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than the specified value.""" + greaterThan: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Boolean +} - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter +""" +A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ +""" +input UUIDFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Equal to the specified value.""" + equalTo: UUID - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Not equal to the specified value.""" + notEqualTo: UUID - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: UUID - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: UUID - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Included in the specified list.""" + in: [UUID!] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Not included in the specified list.""" + notIn: [UUID!] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Less than the specified value.""" + lessThan: UUID - """Checks for all expressions in this list.""" - and: [ApplicationCommunityReportExcelDataFilter!] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: UUID - """Checks for any expressions in this list.""" - or: [ApplicationCommunityReportExcelDataFilter!] + """Greater than the specified value.""" + greaterThan: UUID - """Negates the expression.""" - not: ApplicationCommunityReportExcelDataFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: UUID } """ -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationClaimsDataFilter { +input IntakeToManyApplicationFilter { """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationClaimsDataFilter + every: ApplicationFilter """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationClaimsDataFilter + some: ApplicationFilter """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationClaimsDataFilter + none: ApplicationFilter } """ -A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationClaimsDataFilter { +input ApplicationFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `ccbcNumber` field.""" + ccbcNumber: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `owner` field.""" + owner: StringFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `intakeId` field.""" + intakeId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25538,190 +26328,254 @@ input ApplicationClaimsDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Filter by the object’s `program` field.""" + program: StringFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `amendmentNumbers` field.""" + amendmentNumbers: StringFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `analystLead` field.""" + analystLead: StringFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `analystStatus` field.""" + analystStatus: StringFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `externalStatus` field.""" + externalStatus: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `hasRfiOpen` field.""" + hasRfiOpen: BooleanFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `intakeNumber` field.""" + intakeNumber: IntFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `internalDescription` field.""" + internalDescription: StringFilter - """Checks for all expressions in this list.""" - and: [ApplicationClaimsDataFilter!] + """Filter by the object’s `organizationName` field.""" + organizationName: StringFilter - """Checks for any expressions in this list.""" - or: [ApplicationClaimsDataFilter!] + """Filter by the object’s `package` field.""" + package: IntFilter - """Negates the expression.""" - not: ApplicationClaimsDataFilter -} + """Filter by the object’s `projectName` field.""" + projectName: StringFilter -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsExcelDataFilter { - """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsExcelDataFilter + """Filter by the object’s `status` field.""" + status: StringFilter - """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsExcelDataFilter + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsExcelDataFilter -} + """Filter by the object’s `statusSortFilter` field.""" + statusSortFilter: StringFilter -""" -A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `zone` field.""" + zone: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `zones` field.""" + zones: IntListFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `assessmentDataByApplicationId` relation.""" + assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `assessmentDataByApplicationId` exist.""" + assessmentDataByApplicationIdExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Filter by the object’s `conditionalApprovalDataByApplicationId` relation. + """ + conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `conditionalApprovalDataByApplicationId` exist.""" + conditionalApprovalDataByApplicationIdExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. + """ + applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" + applicationGisAssessmentHhsByApplicationIdExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `applicationGisDataByApplicationId` relation.""" + applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationGisDataByApplicationId` exist.""" + applicationGisDataByApplicationIdExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Filter by the object’s `projectInformationDataByApplicationId` relation. + """ + projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `projectInformationDataByApplicationId` exist.""" + projectInformationDataByApplicationIdExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Filter by the object’s `applicationClaimsDataByApplicationId` relation. + """ + applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationClaimsDataByApplicationId` exist.""" + applicationClaimsDataByApplicationIdExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. + """ + applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationClaimsExcelDataByApplicationId` exist.""" + applicationClaimsExcelDataByApplicationIdExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. + """ + applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationClaimsExcelDataFilter!] + """ + Some related `applicationCommunityProgressReportDataByApplicationId` exist. + """ + applicationCommunityProgressReportDataByApplicationIdExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationClaimsExcelDataFilter!] + """ + Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. + """ + applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter - """Negates the expression.""" - not: ApplicationClaimsExcelDataFilter -} + """ + Some related `applicationCommunityReportExcelDataByApplicationId` exist. + """ + applicationCommunityReportExcelDataByApplicationIdExist: Boolean -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneDataFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. """ - every: ApplicationMilestoneDataFilter + applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + + """Some related `applicationInternalDescriptionsByApplicationId` exist.""" + applicationInternalDescriptionsByApplicationIdExist: Boolean """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneDataByApplicationId` relation. """ - some: ApplicationMilestoneDataFilter + applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByApplicationId` exist.""" + applicationMilestoneDataByApplicationIdExist: Boolean """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. """ - none: ApplicationMilestoneDataFilter -} + applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter -""" -A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" + applicationMilestoneExcelDataByApplicationIdExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `applicationSowDataByApplicationId` relation.""" + applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `applicationSowDataByApplicationId` exist.""" + applicationSowDataByApplicationIdExist: Boolean - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `changeRequestDataByApplicationId` relation.""" + changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `changeRequestDataByApplicationId` exist.""" + changeRequestDataByApplicationIdExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `notificationsByApplicationId` relation.""" + notificationsByApplicationId: ApplicationToManyNotificationFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `notificationsByApplicationId` exist.""" + notificationsByApplicationIdExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationPackagesByApplicationId` relation.""" + applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationPackagesByApplicationId` exist.""" + applicationPackagesByApplicationIdExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `applicationProjectTypesByApplicationId` relation. + """ + applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `applicationProjectTypesByApplicationId` exist.""" + applicationProjectTypesByApplicationIdExist: Boolean + + """Filter by the object’s `attachmentsByApplicationId` relation.""" + attachmentsByApplicationId: ApplicationToManyAttachmentFilter + + """Some related `attachmentsByApplicationId` exist.""" + attachmentsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. + """ + applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByApplicationId` exist.""" + applicationAnalystLeadsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationAnnouncementsByApplicationId` relation. + """ + applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByApplicationId` exist.""" + applicationAnnouncementsByApplicationIdExist: Boolean + + """Filter by the object’s `applicationFormDataByApplicationId` relation.""" + applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + + """Some related `applicationFormDataByApplicationId` exist.""" + applicationFormDataByApplicationIdExist: Boolean + + """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" + applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + + """Some related `applicationRfiDataByApplicationId` exist.""" + applicationRfiDataByApplicationIdExist: Boolean + + """Filter by the object’s `applicationStatusesByApplicationId` relation.""" + applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + + """Some related `applicationStatusesByApplicationId` exist.""" + applicationStatusesByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationAnnouncedsByApplicationId` relation. + """ + applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter + + """Some related `applicationAnnouncedsByApplicationId` exist.""" + applicationAnnouncedsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationFormTemplate9DataByApplicationId` relation. + """ + applicationFormTemplate9DataByApplicationId: ApplicationToManyApplicationFormTemplate9DataFilter + + """Some related `applicationFormTemplate9DataByApplicationId` exist.""" + applicationFormTemplate9DataByApplicationIdExist: Boolean + + """Filter by the object’s `intakeByIntakeId` relation.""" + intakeByIntakeId: IntakeFilter + + """A related `intakeByIntakeId` exists.""" + intakeByIntakeIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25742,132 +26596,113 @@ input ApplicationMilestoneDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationMilestoneDataFilter!] + and: [ApplicationFilter!] """Checks for any expressions in this list.""" - or: [ApplicationMilestoneDataFilter!] + or: [ApplicationFilter!] """Negates the expression.""" - not: ApplicationMilestoneDataFilter + not: ApplicationFilter } """ -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationMilestoneExcelDataFilter { +input IntListFilter { """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationMilestoneExcelDataFilter + isNull: Boolean - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Equal to the specified value.""" + equalTo: [Int] + + """Not equal to the specified value.""" + notEqualTo: [Int] """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ApplicationMilestoneExcelDataFilter -} - -""" -A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + distinctFrom: [Int] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [Int] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Less than the specified value.""" + lessThan: [Int] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [Int] - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Greater than the specified value.""" + greaterThan: [Int] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [Int] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Contains the specified list of values.""" + contains: [Int] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Contained by the specified list of values.""" + containedBy: [Int] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Overlaps the specified list of values.""" + overlaps: [Int] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Any array item is equal to the specified value.""" + anyEqualTo: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Any array item is not equal to the specified value.""" + anyNotEqualTo: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Any array item is less than the specified value.""" + anyLessThan: Int - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneExcelDataFilter!] + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: Int - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneExcelDataFilter!] + """Any array item is greater than the specified value.""" + anyGreaterThan: Int - """Negates the expression.""" - not: ApplicationMilestoneExcelDataFilter + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: Int } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationInternalDescriptionFilter { +input ApplicationToManyAssessmentDataFilter { """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationInternalDescriptionFilter + every: AssessmentDataFilter """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationInternalDescriptionFilter + some: AssessmentDataFilter """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationInternalDescriptionFilter + none: AssessmentDataFilter } """ -A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationInternalDescriptionFilter { +input AssessmentDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `assessmentDataType` field.""" + assessmentDataType: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25890,8 +26725,11 @@ input ApplicationInternalDescriptionFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" + assessmentTypeByAssessmentDataType: AssessmentTypeFilter + + """A related `assessmentTypeByAssessmentDataType` exists.""" + assessmentTypeByAssessmentDataTypeExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25912,138 +26750,141 @@ input ApplicationInternalDescriptionFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationInternalDescriptionFilter!] + and: [AssessmentDataFilter!] """Checks for any expressions in this list.""" - or: [ApplicationInternalDescriptionFilter!] + or: [AssessmentDataFilter!] """Negates the expression.""" - not: ApplicationInternalDescriptionFilter + not: AssessmentDataFilter } """ -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationProjectTypeFilter { +input JSONFilter { """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationProjectTypeFilter + isNull: Boolean - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Equal to the specified value.""" + equalTo: JSON + + """Not equal to the specified value.""" + notEqualTo: JSON """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ApplicationProjectTypeFilter -} + distinctFrom: JSON -""" -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: JSON - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Included in the specified list.""" + in: [JSON!] - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Not included in the specified list.""" + notIn: [JSON!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than the specified value.""" + lessThan: JSON - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: JSON - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Greater than the specified value.""" + greaterThan: JSON - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: JSON - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Contains the specified JSON.""" + contains: JSON - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contains the specified key.""" + containsKey: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Contains all of the specified keys.""" + containsAllKeys: [String!] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Contains any of the specified keys.""" + containsAnyKeys: [String!] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Contained by the specified JSON.""" + containedBy: JSON +} - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +""" +scalar JSON - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" + assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `assessmentDataByAssessmentDataType` exist.""" + assessmentDataByAssessmentDataTypeExist: Boolean """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + and: [AssessmentTypeFilter!] """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] + or: [AssessmentTypeFilter!] """Negates the expression.""" - not: ApplicationProjectTypeFilter + not: AssessmentTypeFilter } """ -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyNotificationFilter { +input AssessmentTypeToManyAssessmentDataFilter { """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: NotificationFilter + every: AssessmentDataFilter """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: NotificationFilter + some: AssessmentDataFilter """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: NotificationFilter + none: AssessmentDataFilter } """ -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ """ -input NotificationFilter { +input CcbcUserFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `notificationType` field.""" - notificationType: StringFilter + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """Filter by the object’s `emailAddress` field.""" + emailAddress: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26063,1176 +26904,996 @@ input NotificationFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """Some related `applicationsByCreatedBy` exist.""" + applicationsByCreatedByExist: Boolean - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: Boolean + """Filter by the object’s `applicationsByUpdatedBy` relation.""" + applicationsByUpdatedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `applicationsByUpdatedBy` exist.""" + applicationsByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `applicationsByArchivedBy` relation.""" + applicationsByArchivedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationsByArchivedBy` exist.""" + applicationsByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter - """Checks for all expressions in this list.""" - and: [NotificationFilter!] + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [NotificationFilter!] + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter - """Negates the expression.""" - not: NotificationFilter -} + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean -""" -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `toEmail` field.""" - toEmail: StringFilter + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `subject` field.""" - subject: StringFilter + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean - """Filter by the object’s `body` field.""" - body: StringFilter + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter - """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean - """Negates the expression.""" - not: EmailRecordFilter -} + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. """ - some: NotificationFilter + applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" + applicationGisAssessmentHhsByCreatedByExist: Boolean -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPendingChangeRequestFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. """ - every: ApplicationPendingChangeRequestFilter + applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" + applicationGisAssessmentHhsByUpdatedByExist: Boolean """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. """ - none: ApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter - - """Filter by the object’s `comment` field.""" - comment: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] + applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter -} + """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" + applicationGisAssessmentHhsByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter -} + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter -""" -A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnnouncedFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `intakesByCreatedBy` relation.""" + intakesByCreatedBy: CcbcUserToManyIntakeFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `intakesByCreatedBy` exist.""" + intakesByCreatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncedFilter!] + """Filter by the object’s `intakesByUpdatedBy` relation.""" + intakesByUpdatedBy: CcbcUserToManyIntakeFilter - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncedFilter!] + """Some related `intakesByUpdatedBy` exist.""" + intakesByUpdatedByExist: Boolean - """Negates the expression.""" - not: ApplicationAnnouncedFilter -} + """Filter by the object’s `intakesByArchivedBy` relation.""" + intakesByArchivedBy: CcbcUserToManyIntakeFilter -""" -A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean - """Filter by the object’s `counter` field.""" - counter: IntFilter + """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" + applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Filter by the object’s `intakesByCounterId` relation.""" - intakesByCounterId: GaplessCounterToManyIntakeFilter + """Some related `applicationClaimsDataByCreatedBy` exist.""" + applicationClaimsDataByCreatedByExist: Boolean - """Some related `intakesByCounterId` exist.""" - intakesByCounterIdExist: Boolean + """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" + applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Checks for all expressions in this list.""" - and: [GaplessCounterFilter!] + """Some related `applicationClaimsDataByUpdatedBy` exist.""" + applicationClaimsDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [GaplessCounterFilter!] + """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" + applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter - """Negates the expression.""" - not: GaplessCounterFilter -} + """Some related `applicationClaimsDataByArchivedBy` exist.""" + applicationClaimsDataByArchivedByExist: Boolean -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterToManyIntakeFilter { """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. """ - every: IntakeFilter + applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" + applicationClaimsExcelDataByCreatedByExist: Boolean """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. """ - none: IntakeFilter -} + applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter -""" -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter + """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" + applicationClaimsExcelDataByUpdatedByExist: Boolean """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. """ - some: ApplicationFilter + applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter -} + """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" + applicationClaimsExcelDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationStatusFilter { """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. """ - every: ApplicationStatusFilter + applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityProgressReportDataByCreatedBy` exist. """ - some: ApplicationStatusFilter + applicationCommunityProgressReportDataByCreatedByExist: Boolean """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. """ - none: ApplicationStatusFilter -} + applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAttachmentFilter { """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. """ - every: AttachmentFilter + applicationCommunityProgressReportDataByUpdatedByExist: Boolean """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. """ - some: AttachmentFilter + applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityProgressReportDataByArchivedBy` exist. """ - none: AttachmentFilter -} + applicationCommunityProgressReportDataByArchivedByExist: Boolean -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyFormDataFilter { """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. """ - every: FormDataFilter + applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" + applicationCommunityReportExcelDataByCreatedByExist: Boolean """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. """ - none: FormDataFilter -} + applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter -""" -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnalystFilter { - """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnalystFilter + """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" + applicationCommunityReportExcelDataByUpdatedByExist: Boolean """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. """ - some: AnalystFilter + applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnalystFilter -} + """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" + applicationCommunityReportExcelDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnalystLeadFilter { """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. """ - every: ApplicationAnalystLeadFilter + applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" + applicationInternalDescriptionsByCreatedByExist: Boolean """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. """ - none: ApplicationAnalystLeadFilter -} + applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter + """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" + applicationInternalDescriptionsByUpdatedByExist: Boolean """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. """ - some: RfiDataFilter + applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} + """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" + applicationInternalDescriptionsByArchivedByExist: Boolean -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" + applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Some related `applicationMilestoneDataByCreatedBy` exist.""" + applicationMilestoneDataByCreatedByExist: Boolean - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" + applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """Some related `applicationMilestoneDataByUpdatedBy` exist.""" + applicationMilestoneDataByUpdatedByExist: Boolean """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. """ - some: ApplicationPackageFilter + applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """Some related `applicationMilestoneDataByArchivedBy` exist.""" + applicationMilestoneDataByArchivedByExist: Boolean -""" -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyRecordVersionFilter { """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. """ - every: RecordVersionFilter + applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + + """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" + applicationMilestoneExcelDataByCreatedByExist: Boolean """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. """ - some: RecordVersionFilter + applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + + """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" + applicationMilestoneExcelDataByUpdatedByExist: Boolean """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. """ - none: RecordVersionFilter -} - -""" -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input RecordVersionFilter { - """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter + applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter + """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" + applicationMilestoneExcelDataByArchivedByExist: Boolean - """Filter by the object’s `op` field.""" - op: OperationFilter + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Filter by the object’s `record` field.""" - record: JSONFilter + """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" + cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" + cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. + """ + cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Checks for all expressions in this list.""" - and: [RecordVersionFilter!] + """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" + cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean - """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" + cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter - """Negates the expression.""" - not: RecordVersionFilter -} + """Some related `cbcProjectsByCreatedBy` exist.""" + cbcProjectsByCreatedByExist: Boolean -""" -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ -""" -input BigIntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" + cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter - """Equal to the specified value.""" - equalTo: BigInt + """Some related `cbcProjectsByUpdatedBy` exist.""" + cbcProjectsByUpdatedByExist: Boolean - """Not equal to the specified value.""" - notEqualTo: BigInt + """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" + cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigInt + """Some related `cbcProjectsByArchivedBy` exist.""" + cbcProjectsByArchivedByExist: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt + """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" + changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter - """Included in the specified list.""" - in: [BigInt!] + """Some related `changeRequestDataByCreatedBy` exist.""" + changeRequestDataByCreatedByExist: Boolean - """Not included in the specified list.""" - notIn: [BigInt!] + """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" + changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter - """Less than the specified value.""" - lessThan: BigInt + """Some related `changeRequestDataByUpdatedBy` exist.""" + changeRequestDataByUpdatedByExist: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt + """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" + changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter - """Greater than the specified value.""" - greaterThan: BigInt + """Some related `changeRequestDataByArchivedBy` exist.""" + changeRequestDataByArchivedByExist: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt -} + """Filter by the object’s `notificationsByCreatedBy` relation.""" + notificationsByCreatedBy: CcbcUserToManyNotificationFilter -""" -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt + """Some related `notificationsByCreatedBy` exist.""" + notificationsByCreatedByExist: Boolean -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ -""" -input OperationFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `notificationsByUpdatedBy` relation.""" + notificationsByUpdatedBy: CcbcUserToManyNotificationFilter - """Equal to the specified value.""" - equalTo: Operation + """Some related `notificationsByUpdatedBy` exist.""" + notificationsByUpdatedByExist: Boolean - """Not equal to the specified value.""" - notEqualTo: Operation + """Filter by the object’s `notificationsByArchivedBy` relation.""" + notificationsByArchivedBy: CcbcUserToManyNotificationFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Operation + """Some related `notificationsByArchivedBy` exist.""" + notificationsByArchivedByExist: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter - """Included in the specified list.""" - in: [Operation!] + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean - """Not included in the specified list.""" - notIn: [Operation!] + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter - """Less than the specified value.""" - lessThan: Operation + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter - """Greater than the specified value.""" - greaterThan: Operation + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE -} + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean -""" -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ -""" -input BigFloatFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: BigFloat + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Not equal to the specified value.""" - notEqualTo: BigFloat + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean """ - Not equal to the specified value, treating null like an ordinary value. + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. """ - distinctFrom: BigFloat + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean - """Included in the specified list.""" - in: [BigFloat!] + """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" + applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Not included in the specified list.""" - notIn: [BigFloat!] + """Some related `applicationProjectTypesByCreatedBy` exist.""" + applicationProjectTypesByCreatedByExist: Boolean - """Less than the specified value.""" - lessThan: BigFloat + """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" + applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat + """Some related `applicationProjectTypesByUpdatedBy` exist.""" + applicationProjectTypesByUpdatedByExist: Boolean - """Greater than the specified value.""" - greaterThan: BigFloat + """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" + applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat -} + """Some related `applicationProjectTypesByArchivedBy` exist.""" + applicationProjectTypesByArchivedByExist: Boolean -""" -A floating point number that requires more precision than IEEE 754 binary 64 -""" -scalar BigFloat + """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" + ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Some related `ccbcUsersByCreatedBy` exist.""" + ccbcUsersByCreatedByExist: Boolean - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" + ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean -""" -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyGisDataFilter { - """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: GisDataFilter + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter - """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: GisDataFilter + """Some related `ccbcUsersByArchivedBy` exist.""" + ccbcUsersByArchivedByExist: Boolean - """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: GisDataFilter -} + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean -""" -A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnnouncementFilter { - """ - Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnnouncementFilter + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter - """ - Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnnouncementFilter + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean - """ - No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnnouncementFilter -} + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean - """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisAssessmentHhFilter -} + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter -} + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab1Filter { - """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab1Filter + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab1Filter -} + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean -""" -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyProjectInformationDataFilter { - """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectInformationDataFilter + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter - """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectInformationDataFilter + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean - """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectInformationDataFilter -} + """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" + applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter + """Some related `applicationAnnouncementsByCreatedBy` exist.""" + applicationAnnouncementsByCreatedByExist: Boolean - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" + applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByUpdatedBy` exist.""" + applicationAnnouncementsByUpdatedByExist: Boolean """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. """ - none: SowTab7Filter -} + applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """Some related `applicationAnnouncementsByArchivedBy` exist.""" + applicationAnnouncementsByArchivedByExist: Boolean - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" + applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """Some related `applicationStatusesByCreatedBy` exist.""" + applicationStatusesByCreatedByExist: Boolean -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter + """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" + applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Some related `applicationStatusesByArchivedBy` exist.""" + applicationStatusesByArchivedByExist: Boolean - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" + applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityProgressReportDataFilter { - """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityProgressReportDataFilter + """Some related `applicationStatusesByUpdatedBy` exist.""" + applicationStatusesByUpdatedByExist: Boolean - """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityProgressReportDataFilter + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter - """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityProgressReportDataFilter -} + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" + cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" + cbcDataChangeReasonsByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" + cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" + cbcDataChangeReasonsByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" + cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" + cbcDataChangeReasonsByArchivedByExist: Boolean + + """Filter by the object’s `emailRecordsByCreatedBy` relation.""" + emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByCreatedBy` exist.""" + emailRecordsByCreatedByExist: Boolean + + """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" + emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByUpdatedBy` exist.""" + emailRecordsByUpdatedByExist: Boolean + + """Filter by the object’s `emailRecordsByArchivedBy` relation.""" + emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByArchivedBy` exist.""" + emailRecordsByArchivedByExist: Boolean + + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean + + """Filter by the object’s `sowTab1SByCreatedBy` relation.""" + sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByCreatedBy` exist.""" + sowTab1SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" + sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByUpdatedBy` exist.""" + sowTab1SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab1SByArchivedBy` relation.""" + sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByArchivedBy` exist.""" + sowTab1SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByUpdatedBy` exist.""" + sowTab8SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab8SByArchivedBy` relation.""" + sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByArchivedBy` exist.""" + sowTab8SByArchivedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" + communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByCreatedBy` exist.""" + communitiesSourceDataByCreatedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" + communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByUpdatedBy` exist.""" + communitiesSourceDataByUpdatedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" + communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByArchivedBy` exist.""" + communitiesSourceDataByArchivedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" + cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" + cbcProjectCommunitiesByCreatedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" + cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" + cbcProjectCommunitiesByUpdatedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" + cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" + cbcProjectCommunitiesByArchivedByExist: Boolean + + """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" + reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByCreatedBy` exist.""" + reportingGcpesByCreatedByExist: Boolean + + """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" + reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByUpdatedBy` exist.""" + reportingGcpesByUpdatedByExist: Boolean + + """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" + reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByArchivedBy` exist.""" + reportingGcpesByArchivedByExist: Boolean + + """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" + applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter + + """Some related `applicationAnnouncedsByCreatedBy` exist.""" + applicationAnnouncedsByCreatedByExist: Boolean + + """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" + applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter + + """Some related `applicationAnnouncedsByUpdatedBy` exist.""" + applicationAnnouncedsByUpdatedByExist: Boolean + + """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" + applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter + + """Some related `applicationAnnouncedsByArchivedBy` exist.""" + applicationAnnouncedsByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsExcelDataFilter { """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationFormTemplate9DataByCreatedBy` relation. """ - every: ApplicationClaimsExcelDataFilter + applicationFormTemplate9DataByCreatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + + """Some related `applicationFormTemplate9DataByCreatedBy` exist.""" + applicationFormTemplate9DataByCreatedByExist: Boolean """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationFormTemplate9DataByUpdatedBy` relation. """ - some: ApplicationClaimsExcelDataFilter + applicationFormTemplate9DataByUpdatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + + """Some related `applicationFormTemplate9DataByUpdatedBy` exist.""" + applicationFormTemplate9DataByUpdatedByExist: Boolean """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationFormTemplate9DataByArchivedBy` relation. """ - none: ApplicationClaimsExcelDataFilter + applicationFormTemplate9DataByArchivedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + + """Some related `applicationFormTemplate9DataByArchivedBy` exist.""" + applicationFormTemplate9DataByArchivedByExist: Boolean + + """Filter by the object’s `keycloakJwtsBySub` relation.""" + keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + + """Some related `keycloakJwtsBySub` exist.""" + keycloakJwtsBySubExist: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CcbcUserFilter!] + + """Checks for any expressions in this list.""" + or: [CcbcUserFilter!] + + """Negates the expression.""" + not: CcbcUserFilter } """ -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneDataFilter { +input CcbcUserToManyApplicationFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneDataFilter + every: ApplicationFilter """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneDataFilter + some: ApplicationFilter """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneDataFilter + none: ApplicationFilter } """ -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneExcelDataFilter { +input CcbcUserToManyAssessmentDataFilter { """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneExcelDataFilter + every: AssessmentDataFilter """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneExcelDataFilter + some: AssessmentDataFilter """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneExcelDataFilter + none: AssessmentDataFilter } """ -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcProjectFilter { +input CcbcUserToManyAnnouncementFilter { """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectFilter + every: AnnouncementFilter """ - Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectFilter + some: AnnouncementFilter """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectFilter + none: AnnouncementFilter } """ -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectFilter { +input AnnouncementFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter + """Filter by the object’s `ccbcNumbers` field.""" + ccbcNumbers: StringFilter + """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27251,6 +27912,14 @@ input CbcProjectFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """ + Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + """ + applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByAnnouncementId` exist.""" + applicationAnnouncementsByAnnouncementIdExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27270,147 +27939,135 @@ input CbcProjectFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + and: [AnnouncementFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + or: [AnnouncementFilter!] """Negates the expression.""" - not: CbcProjectFilter + not: AnnouncementFilter } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationInternalDescriptionFilter { +input AnnouncementToManyApplicationAnnouncementFilter { """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationInternalDescriptionFilter + every: ApplicationAnnouncementFilter """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationInternalDescriptionFilter + some: ApplicationAnnouncementFilter """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationInternalDescriptionFilter + none: ApplicationAnnouncementFilter } """ -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter +input ApplicationAnnouncementFilter { + """Filter by the object’s `announcementId` field.""" + announcementId: IntFilter - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter -} + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter -""" -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """Filter by the object’s `isPrimary` field.""" + isPrimary: BooleanFilter -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """Filter by the object’s `announcementByAnnouncementId` relation.""" + announcementByAnnouncementId: AnnouncementFilter - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationAnnouncementFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationAnnouncementFilter!] + + """Negates the expression.""" + not: ApplicationAnnouncementFilter } """ -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcFilter { +input CcbcUserToManyConditionalApprovalDataFilter { """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcFilter + every: ConditionalApprovalDataFilter """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcFilter + some: ConditionalApprovalDataFilter """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcFilter + none: ConditionalApprovalDataFilter } """ -A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input CbcFilter { +input ConditionalApprovalDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27430,31 +28087,11 @@ input CbcFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter - - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean - - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter - - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean - - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. - """ - cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" - cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" - cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `cbcProjectCommunitiesByCbcId` exist.""" - cbcProjectCommunitiesByCbcIdExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27475,53 +28112,50 @@ input CbcFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcFilter!] + and: [ConditionalApprovalDataFilter!] """Checks for any expressions in this list.""" - or: [CbcFilter!] + or: [ConditionalApprovalDataFilter!] """Negates the expression.""" - not: CbcFilter + not: ConditionalApprovalDataFilter } """ -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcDataFilter { +input CcbcUserToManyFormDataFilter { """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataFilter + every: FormDataFilter """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataFilter + some: FormDataFilter """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataFilter + none: FormDataFilter } """ -A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataFilter { +input FormDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter - """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `lastEditedPage` field.""" + lastEditedPage: StringFilter + + """Filter by the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27541,26 +28175,28 @@ input CbcDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """Filter by the object’s `formSchemaId` field.""" + formSchemaId: IntFilter - """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" - cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter + """Filter by the object’s `reasonForChange` field.""" + reasonForChange: StringFilter - """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" - cbcDataChangeReasonsByCbcDataIdExist: Boolean + """Filter by the object’s `isEditable` field.""" + isEditable: BooleanFilter - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Filter by the object’s `applicationFormDataByFormDataId` relation.""" + applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Some related `applicationFormDataByFormDataId` exist.""" + applicationFormDataByFormDataIdExist: Boolean - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter + """ + Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. + """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean + """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" + formDataStatusTypeByFormDataStatusTypeIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27580,218 +28216,256 @@ input CbcDataFilter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `formByFormSchemaId` relation.""" + formByFormSchemaId: FormFilter + + """A related `formByFormSchemaId` exists.""" + formByFormSchemaIdExists: Boolean + """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + and: [FormDataFilter!] """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + or: [FormDataFilter!] """Negates the expression.""" - not: CbcDataFilter + not: FormDataFilter } """ -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataToManyCbcDataChangeReasonFilter { +input FormDataToManyApplicationFormDataFilter { """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataChangeReasonFilter + every: ApplicationFormDataFilter """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataChangeReasonFilter + some: ApplicationFormDataFilter """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataChangeReasonFilter + none: ApplicationFormDataFilter } """ -A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataChangeReasonFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `cbcDataId` field.""" - cbcDataId: IntFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +input ApplicationFormDataFilter { + """Filter by the object’s `formDataId` field.""" + formDataId: IntFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `formDataByFormDataId` relation.""" + formDataByFormDataId: FormDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `cbcDataByCbcDataId` relation.""" - cbcDataByCbcDataId: CbcDataFilter + """Checks for all expressions in this list.""" + and: [ApplicationFormDataFilter!] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Checks for any expressions in this list.""" + or: [ApplicationFormDataFilter!] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Negates the expression.""" + not: ApplicationFormDataFilter +} - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" + formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `formDataByFormDataStatusTypeId` exist.""" + formDataByFormDataStatusTypeIdExist: Boolean """Checks for all expressions in this list.""" - and: [CbcDataChangeReasonFilter!] + and: [FormDataStatusTypeFilter!] """Checks for any expressions in this list.""" - or: [CbcDataChangeReasonFilter!] + or: [FormDataStatusTypeFilter!] """Negates the expression.""" - not: CbcDataChangeReasonFilter + not: FormDataStatusTypeFilter } """ -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcApplicationPendingChangeRequestFilter { +input FormDataStatusTypeToManyFormDataFilter { """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcApplicationPendingChangeRequestFilter + every: FormDataFilter """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcApplicationPendingChangeRequestFilter + some: FormDataFilter """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcApplicationPendingChangeRequestFilter + none: FormDataFilter } """ -A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ """ -input CbcApplicationPendingChangeRequestFilter { +input FormFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Filter by the object’s `slug` field.""" + slug: StringFilter - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """Filter by the object’s `jsonSchema` field.""" + jsonSchema: JSONFilter - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `formType` field.""" + formType: StringFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `formDataByFormSchemaId` relation.""" + formDataByFormSchemaId: FormToManyFormDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `formDataByFormSchemaId` exist.""" + formDataByFormSchemaIdExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `formTypeByFormType` relation.""" + formTypeByFormType: FormTypeFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """A related `formTypeByFormType` exists.""" + formTypeByFormTypeExists: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Checks for all expressions in this list.""" + and: [FormFilter!] - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Checks for any expressions in this list.""" + or: [FormFilter!] - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Negates the expression.""" + not: FormFilter +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +""" +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean +""" +A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ +""" +input FormTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `formsByFormType` relation.""" + formsByFormType: FormTypeToManyFormFilter + + """Some related `formsByFormType` exist.""" + formsByFormTypeExist: Boolean """Checks for all expressions in this list.""" - and: [CbcApplicationPendingChangeRequestFilter!] + and: [FormTypeFilter!] """Checks for any expressions in this list.""" - or: [CbcApplicationPendingChangeRequestFilter!] + or: [FormTypeFilter!] """Negates the expression.""" - not: CbcApplicationPendingChangeRequestFilter + not: FormTypeFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcProjectCommunityFilter { +input FormTypeToManyFormFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: FormFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: FormFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: FormFilter } """ -A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectCommunityFilter { +input CcbcUserToManyApplicationGisAssessmentHhFilter { + """ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisAssessmentHhFilter + + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter + + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} + +""" +A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `communitiesSourceDataId` field.""" - communitiesSourceDataId: IntFilter + """Filter by the object’s `eligible` field.""" + eligible: FloatFilter + + """Filter by the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: FloatFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27811,19 +28485,8 @@ input CbcProjectCommunityFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter - - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean - - """ - Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. - """ - communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter - - """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" - communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27844,50 +28507,97 @@ input CbcProjectCommunityFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectCommunityFilter!] + and: [ApplicationGisAssessmentHhFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectCommunityFilter!] + or: [ApplicationGisAssessmentHhFilter!] """Negates the expression.""" - not: CbcProjectCommunityFilter + not: ApplicationGisAssessmentHhFilter } """ -A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Float fields. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input FloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Filter by the object’s `geographicNameId` field.""" - geographicNameId: IntFilter + """Equal to the specified value.""" + equalTo: Float - """Filter by the object’s `bcGeographicName` field.""" - bcGeographicName: StringFilter + """Not equal to the specified value.""" + notEqualTo: Float - """Filter by the object’s `geographicType` field.""" - geographicType: StringFilter + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Float - """Filter by the object’s `regionalDistrict` field.""" - regionalDistrict: StringFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Float - """Filter by the object’s `economicRegion` field.""" - economicRegion: StringFilter + """Included in the specified list.""" + in: [Float!] - """Filter by the object’s `latitude` field.""" - latitude: FloatFilter + """Not included in the specified list.""" + notIn: [Float!] - """Filter by the object’s `longitude` field.""" - longitude: FloatFilter + """Less than the specified value.""" + lessThan: Float - """Filter by the object’s `mapLink` field.""" - mapLink: StringFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Float - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Greater than the specified value.""" + greaterThan: Float - """Filter by the object’s `createdAt` field.""" + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Float +} + +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter + + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter + + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} + +""" +A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `batchId` field.""" + batchId: IntFilter + + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" createdAt: DatetimeFilter """Filter by the object’s `updatedBy` field.""" @@ -27902,13 +28612,17 @@ input CommunitiesSourceDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """ - Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. - """ - cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter + """Filter by the object’s `gisDataByBatchId` relation.""" + gisDataByBatchId: GisDataFilter - """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" - cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean + """A related `gisDataByBatchId` exists.""" + gisDataByBatchIdExists: Boolean + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27929,164 +28643,129 @@ input CommunitiesSourceDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CommunitiesSourceDataFilter!] + and: [ApplicationGisDataFilter!] """Checks for any expressions in this list.""" - or: [CommunitiesSourceDataFilter!] + or: [ApplicationGisDataFilter!] """Negates the expression.""" - not: CommunitiesSourceDataFilter + not: ApplicationGisDataFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter +input GisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} + """Filter by the object’s `applicationGisDataByBatchId` relation.""" + applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter + """Some related `applicationGisDataByBatchId` exist.""" + applicationGisDataByBatchIdExist: Boolean - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataChangeReasonFilter -} + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean -""" -A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCommunitiesSourceDataFilter { - """ - Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CommunitiesSourceDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CommunitiesSourceDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CommunitiesSourceDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [GisDataFilter!] + + """Checks for any expressions in this list.""" + or: [GisDataFilter!] + + """Negates the expression.""" + not: GisDataFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcProjectCommunityFilter { +input GisDataToManyApplicationGisDataFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: ApplicationGisDataFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: ApplicationGisDataFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: ApplicationGisDataFilter } """ -A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyReportingGcpeFilter { +input CcbcUserToManyProjectInformationDataFilter { """ - Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ReportingGcpeFilter + every: ProjectInformationDataFilter """ - Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ReportingGcpeFilter + some: ProjectInformationDataFilter """ - No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ReportingGcpeFilter + none: ProjectInformationDataFilter } """ -A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input ReportingGcpeFilter { +input ProjectInformationDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `reportData` field.""" - reportData: JSONFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28106,6 +28785,12 @@ input ReportingGcpeFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28125,4330 +28810,4446 @@ input ReportingGcpeFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ReportingGcpeFilter!] + and: [ProjectInformationDataFilter!] """Checks for any expressions in this list.""" - or: [ReportingGcpeFilter!] + or: [ProjectInformationDataFilter!] """Negates the expression.""" - not: ReportingGcpeFilter -} - -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter - - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter - - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter + not: ProjectInformationDataFilter } """ -A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyKeycloakJwtFilter { +input CcbcUserToManyRfiDataFilter { """ - Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: KeycloakJwtFilter + every: RfiDataFilter """ - Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: KeycloakJwtFilter + some: RfiDataFilter """ - No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: KeycloakJwtFilter + none: RfiDataFilter } """ -A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input KeycloakJwtFilter { - """Filter by the object’s `jti` field.""" - jti: UUIDFilter - - """Filter by the object’s `exp` field.""" - exp: IntFilter - - """Filter by the object’s `nbf` field.""" - nbf: IntFilter - - """Filter by the object’s `iat` field.""" - iat: IntFilter - - """Filter by the object’s `iss` field.""" - iss: StringFilter - - """Filter by the object’s `aud` field.""" - aud: StringFilter +input RfiDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `sub` field.""" - sub: StringFilter + """Filter by the object’s `rfiNumber` field.""" + rfiNumber: StringFilter - """Filter by the object’s `typ` field.""" - typ: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `azp` field.""" - azp: StringFilter + """Filter by the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: StringFilter - """Filter by the object’s `authTime` field.""" - authTime: IntFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `sessionState` field.""" - sessionState: UUIDFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `acr` field.""" - acr: StringFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `emailVerified` field.""" - emailVerified: BooleanFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `preferredUsername` field.""" - preferredUsername: StringFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" + applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Some related `applicationRfiDataByRfiDataId` exist.""" + applicationRfiDataByRfiDataIdExist: Boolean - """Filter by the object’s `email` field.""" - email: StringFilter + """ + Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. + """ + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter - """Filter by the object’s `brokerSessionId` field.""" - brokerSessionId: StringFilter + """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" + rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean - """Filter by the object’s `priorityGroup` field.""" - priorityGroup: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `identityProvider` field.""" - identityProvider: StringFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `userGroups` field.""" - userGroups: StringListFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `authRole` field.""" - authRole: StringFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `ccbcUserBySub` relation.""" - ccbcUserBySub: CcbcUserFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """A related `ccbcUserBySub` exists.""" - ccbcUserBySubExists: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [KeycloakJwtFilter!] + and: [RfiDataFilter!] """Checks for any expressions in this list.""" - or: [KeycloakJwtFilter!] + or: [RfiDataFilter!] """Negates the expression.""" - not: KeycloakJwtFilter + not: RfiDataFilter } """ -A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ """ -input StringListFilter { +input RfiDataToManyApplicationRfiDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: [String] + every: ApplicationRfiDataFilter - """Not equal to the specified value.""" - notEqualTo: [String] + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: [String] + none: ApplicationRfiDataFilter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [String] +""" +A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationRfiDataFilter { + """Filter by the object’s `rfiDataId` field.""" + rfiDataId: IntFilter - """Less than the specified value.""" - lessThan: [String] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [String] + """Filter by the object’s `rfiDataByRfiDataId` relation.""" + rfiDataByRfiDataId: RfiDataFilter - """Greater than the specified value.""" - greaterThan: [String] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [String] + """Checks for all expressions in this list.""" + and: [ApplicationRfiDataFilter!] - """Contains the specified list of values.""" - contains: [String] + """Checks for any expressions in this list.""" + or: [ApplicationRfiDataFilter!] - """Contained by the specified list of values.""" - containedBy: [String] + """Negates the expression.""" + not: ApplicationRfiDataFilter +} - """Overlaps the specified list of values.""" - overlaps: [String] +""" +A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Any array item is equal to the specified value.""" - anyEqualTo: String + """Filter by the object’s `description` field.""" + description: StringFilter - """Any array item is not equal to the specified value.""" - anyNotEqualTo: String + """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" + rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter - """Any array item is less than the specified value.""" - anyLessThan: String + """Some related `rfiDataByRfiDataStatusTypeId` exist.""" + rfiDataByRfiDataStatusTypeIdExist: Boolean - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: String + """Checks for all expressions in this list.""" + and: [RfiDataStatusTypeFilter!] - """Any array item is greater than the specified value.""" - anyGreaterThan: String + """Checks for any expressions in this list.""" + or: [RfiDataStatusTypeFilter!] - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: String + """Negates the expression.""" + not: RfiDataStatusTypeFilter } -"""A connection to a list of `Intake` values.""" -type IntakesConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! - +""" +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeToManyRfiDataFilter { """ - A list of edges which contains the `Intake` and cursor to aid in pagination. + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [IntakesEdge!]! + every: RfiDataFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RfiDataFilter - """The count of *all* `Intake` you could get from the connection.""" - totalCount: Int! + """ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RfiDataFilter } """ -Table containing intake numbers and their respective open and closing dates +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ """ -type Intake implements Node { +input CcbcUserToManyIntakeFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + every: IntakeFilter - """Unique ID for each intake number""" - rowId: Int! + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """Open date and time for an intake number""" - openTimestamp: Datetime! + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """Close date and time for an intake number""" - closeTimestamp: Datetime! +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter """ - The name of the sequence used to generate CCBC ids. It is added via a trigger + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationNumberSeqName: String + none: ApplicationClaimsDataFilter +} - """created by user id""" - createdBy: Int +""" +A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationClaimsDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """A description of the intake""" - description: String + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """A column to denote whether the intake is a rolling intake""" - rollingIntake: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationClaimsDataFilter!] - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [ApplicationClaimsDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Negates the expression.""" + not: ApplicationClaimsDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationsConnection! +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationClaimsExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationClaimsExcelDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationClaimsExcelDataFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationClaimsExcelDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! -} + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + none: ApplicationCommunityProgressReportDataFilter +} - """Primary key for the gapless counter""" - rowId: Int! +""" +A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationCommunityProgressReportDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Primary key for the gapless counter""" - counter: Int! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [ApplicationCommunityProgressReportDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [ApplicationCommunityProgressReportDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: ApplicationCommunityProgressReportDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter -"""Methods to use when ordering `Intake`.""" -enum IntakesOrderBy { - NATURAL - ID_ASC - ID_DESC - OPEN_TIMESTAMP_ASC - OPEN_TIMESTAMP_DESC - CLOSE_TIMESTAMP_ASC - CLOSE_TIMESTAMP_DESC - CCBC_INTAKE_NUMBER_ASC - CCBC_INTAKE_NUMBER_DESC - APPLICATION_NUMBER_SEQ_NAME_ASC - APPLICATION_NUMBER_SEQ_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - COUNTER_ID_ASC - COUNTER_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - HIDDEN_ASC - HIDDEN_DESC - HIDDEN_CODE_ASC - HIDDEN_CODE_DESC - ROLLING_INTAKE_ASC - ROLLING_INTAKE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter -""" -A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input IntakeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Checks for all expressions in this list.""" + and: [ApplicationCommunityReportExcelDataFilter!] - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for any expressions in this list.""" + or: [ApplicationCommunityReportExcelDataFilter!] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Negates the expression.""" + not: ApplicationCommunityReportExcelDataFilter +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter - """Checks for equality with the object’s `counterId` field.""" - counterId: Int + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter - """Checks for equality with the object’s `description` field.""" - description: String + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean +""" +A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Checks for equality with the object’s `rollingIntake` field.""" - rollingIntake: Boolean -} + """Filter by the object’s `description` field.""" + description: StringFilter -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Checks for all expressions in this list.""" + and: [ApplicationInternalDescriptionFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationInternalDescriptionFilter!] + + """Negates the expression.""" + not: ApplicationInternalDescriptionFilter +} +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationMilestoneDataFilter { """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + every: ApplicationMilestoneDataFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Negates the expression.""" + not: ApplicationMilestoneDataFilter } -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! - +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationMilestoneExcelDataFilter { """ - A list of edges which contains the `Application` and cursor to aid in pagination. + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [ApplicationsEdge!]! + every: ApplicationMilestoneExcelDataFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter } """ -Table containing the data associated with the CCBC respondents application +A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ """ -type Application implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +input ApplicationMilestoneExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Primary key ID for the application""" - rowId: Int! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Reference number assigned to the application""" - ccbcNumber: String + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The owner of the application, identified by its JWT sub""" - owner: String! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The intake associated with the application, set when it is submitted""" - intakeId: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """created by user id""" - createdBy: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """archived at timestamp""" - archivedAt: Datetime + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Program type of the project""" - program: String! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneExcelDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneExcelDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: ApplicationMilestoneExcelDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! +""" +A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `isAmendment` field.""" + isAmendment: BooleanFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sowTab1SBySowId` relation.""" + sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `sowTab1SBySowId` exist.""" + sowTab1SBySowIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab2SBySowId` relation.""" + sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `sowTab2SBySowId` exist.""" + sowTab2SBySowIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Filter by the object’s `sowTab7SBySowId` relation.""" + sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Some related `sowTab7SBySowId` exist.""" + sowTab7SBySowIdExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sowTab8SBySowId` relation.""" + sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter - """Only read the last `n` values of the set.""" - last: Int + """Some related `sowTab8SBySowId` exist.""" + sowTab8SBySowIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnalystLeadCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationSowDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationSowDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationSowDataFilter +} - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab1Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [SowTab1Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab1Filter!] + + """Negates the expression.""" + not: SowTab1Filter +} +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab2Filter { """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - conditionalApprovalDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: SowTab2Filter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab2Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ConditionalApprovalDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [SowTab2Filter!] - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [SowTab2Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Negates the expression.""" + not: SowTab2Filter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + some: SowTab7Filter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab7Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisAssessmentHhCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectInformationDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! - - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [SowTab7Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeRequestDataCondition + """Checks for any expressions in this list.""" + or: [SowTab7Filter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + """Negates the expression.""" + not: SowTab7Filter +} +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab8Filter { """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: SowTab8Filter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab8Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityProgressReportDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [SowTab8Filter!] - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [SowTab8Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition + """Negates the expression.""" + not: SowTab8Filter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! +""" +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { + """ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcApplicationPendingChangeRequestFilter """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + some: CbcApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcApplicationPendingChangeRequestFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `comment` field.""" + comment: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneDataCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [CbcApplicationPendingChangeRequestFilter!] - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [CbcApplicationPendingChangeRequestFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneExcelDataCondition + """Negates the expression.""" + not: CbcApplicationPendingChangeRequestFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationInternalDescriptionCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. """ - applicationProjectTypesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" + cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationProjectTypeCondition + """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" + cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + """Some related `cbcProjectCommunitiesByCbcId` exist.""" + cbcProjectCommunitiesByCbcIdExist: Boolean - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Checks for all expressions in this list.""" + and: [CbcFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """Checks for any expressions in this list.""" + or: [CbcFilter!] + """Negates the expression.""" + not: CbcFilter +} + +""" +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcApplicationPendingChangeRequestFilter { """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: CbcApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcApplicationPendingChangeRequestFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcApplicationPendingChangeRequestFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! +""" +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncedCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" + cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" + cbcDataChangeReasonsByCbcDataIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """ - computed column to return space separated list of amendment numbers for a change request - """ - amendmentNumbers: String + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Computed column to return analyst lead of an application""" - analystLead: String + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter - """Computed column to return the analyst-visible status of an application""" - analystStatus: String - announced: Boolean + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """Checks for all expressions in this list.""" + and: [CbcDataFilter!] - """Computed column to get assessment notifications by assessment type""" - assessmentNotifications( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [CbcDataFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: CbcDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataToManyCbcDataChangeReasonFilter { + """ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataChangeReasonFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! +""" +A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataChangeReasonFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData + """Filter by the object’s `cbcDataId` field.""" + cbcDataId: IntFilter - """Computed column to return external status of an application""" - externalStatus: String + """Filter by the object’s `description` field.""" + description: StringFilter - """Computed column to display form_data""" - formData: FormData + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Computed column that returns list of audit records for application""" - history( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `cbcDataByCbcDataId` relation.""" + cbcDataByCbcDataId: CbcDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Computed column to display organization name from json data""" - organizationName: String + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Computed column to return the application announced status for an application - """ - package: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Computed column to return project information data""" - projectInformation: ProjectInformationData + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Computed column to display the project name""" - projectName: String + """Checks for all expressions in this list.""" + and: [CbcDataChangeReasonFilter!] - """Computed column to return last RFI for an application""" - rfi: RfiData + """Checks for any expressions in this list.""" + or: [CbcDataChangeReasonFilter!] - """Computed column to return status of an application""" - status: String + """Negates the expression.""" + not: CbcDataChangeReasonFilter +} - """Computed column to return the order of the status""" - statusOrder: Int +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter """ - Computed column to return the status order with the status name appended for sorting and filtering + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - statusSortFilter: String - zone: Int + some: CbcProjectCommunityFilter """ - Computed column to get single lowest zone from json data, used for sorting + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - zones: [Int] + none: CbcProjectCommunityFilter +} - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectCommunityFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `communitiesSourceDataId` field.""" + communitiesSourceDataId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusTypeCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. + """ + communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" + communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [CbcProjectCommunityFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [CbcProjectCommunityFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: CbcProjectCommunityFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CommunitiesSourceDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `geographicNameId` field.""" + geographicNameId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `bcGeographicName` field.""" + bcGeographicName: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `geographicType` field.""" + geographicType: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `regionalDistrict` field.""" + regionalDistrict: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `economicRegion` field.""" + economicRegion: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `latitude` field.""" + latitude: FloatFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `longitude` field.""" + longitude: FloatFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `mapLink` field.""" + mapLink: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. + """ + cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" + cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [CommunitiesSourceDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [CommunitiesSourceDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + """Negates the expression.""" + not: CommunitiesSourceDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CommunitiesSourceDataToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectFilter { + """ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [CbcProjectFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Checks for any expressions in this list.""" + or: [CbcProjectFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + """Negates the expression.""" + not: CbcProjectFilter +} - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ChangeRequestDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ChangeRequestDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ChangeRequestDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + """Negates the expression.""" + not: ChangeRequestDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input NotificationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentTypeCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [NotificationFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [NotificationFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `subject` field.""" + subject: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `body` field.""" + body: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `messageId` field.""" + messageId: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [EmailRecordFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [EmailRecordFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: EmailRecordFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPackageFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `package` field.""" + package: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationPackageFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationPackageFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationPackageFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `comment` field.""" + comment: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationProjectTypeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `projectType` field.""" + projectType: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationProjectTypeFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationProjectTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationProjectTypeFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCcbcUserFilter { + """ + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + """ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CcbcUserFilter +} - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `file` field.""" + file: UUIDFilter - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `description` field.""" + description: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnnouncementCondition + """Filter by the object’s `fileName` field.""" + fileName: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! + """Filter by the object’s `fileType` field.""" + fileType: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationStatusByApplicationStatusId` relation. + """ + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [AttachmentFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: AttachmentFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `status` field.""" + status: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `active` field.""" + active: BooleanFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `email` field.""" + email: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [AnalystFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [AnalystFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: AnalystFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `analystId` field.""" + analystId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationAnalystLeadFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationAnalystLeadFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationAnalystLeadFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcFilter { + """ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataChangeReasonFilter { + """ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataChangeReasonFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyRecordVersionFilter { + """ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RecordVersionFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RecordVersionFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RecordVersionFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input RecordVersionFilter { + """Filter by the object’s `rowId` field.""" + rowId: BigIntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `op` field.""" + op: OperationFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `tableName` field.""" + tableName: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `record` field.""" + record: JSONFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [RecordVersionFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [RecordVersionFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: RecordVersionFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ +""" +input BigIntFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Equal to the specified value.""" + equalTo: BigInt - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not equal to the specified value.""" + notEqualTo: BigInt - """Only read the last `n` values of the set.""" - last: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigInt - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigInt - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Included in the specified list.""" + in: [BigInt!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not included in the specified list.""" + notIn: [BigInt!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than the specified value.""" + lessThan: BigInt - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigInt - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Greater than the specified value.""" + greaterThan: BigInt - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigInt +} - """Only read the last `n` values of the set.""" - last: Int +""" +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +""" +scalar BigInt - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +""" +input OperationFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value.""" + equalTo: Operation - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not equal to the specified value.""" + notEqualTo: Operation - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Operation - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + """Included in the specified list.""" + in: [Operation!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not included in the specified list.""" + notIn: [Operation!] - """Only read the last `n` values of the set.""" - last: Int + """Less than the specified value.""" + lessThan: Operation - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than the specified value.""" + greaterThan: Operation - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ +""" +input BigFloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + """Equal to the specified value.""" + equalTo: BigFloat - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not equal to the specified value.""" + notEqualTo: BigFloat - """Only read the last `n` values of the set.""" - last: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigFloat - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Included in the specified list.""" + in: [BigFloat!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not included in the specified list.""" + notIn: [BigFloat!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than the specified value.""" + lessThan: BigFloat - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + """Greater than the specified value.""" + greaterThan: BigFloat - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat +} - """Only read the last `n` values of the set.""" - last: Int +""" +A floating point number that requires more precision than IEEE 754 binary 64 +""" +scalar BigFloat - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab2Filter { + """ + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab2Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCommunitiesSourceDataFilter { + """ + Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CommunitiesSourceDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CommunitiesSourceDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CommunitiesSourceDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyReportingGcpeFilter { + """ + Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ReportingGcpeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ReportingGcpeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ReportingGcpeFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +""" +input ReportingGcpeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `reportData` field.""" + reportData: JSONFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ReportingGcpeFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ReportingGcpeFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + """Negates the expression.""" + not: ReportingGcpeFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnnouncedFilter { + """ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncedFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncedFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncedFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnnouncedFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationAnnouncedFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [ApplicationAnnouncedFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Negates the expression.""" + not: ApplicationAnnouncedFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationFormTemplate9DataFilter { + """ + Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormTemplate9DataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormTemplate9DataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormTemplate9DataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFormTemplate9DataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `errors` field.""" + errors: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationFormTemplate9DataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationFormTemplate9DataFilter!] + + """Negates the expression.""" + not: ApplicationFormTemplate9DataFilter +} + +""" +A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyKeycloakJwtFilter { + """ + Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: KeycloakJwtFilter + + """ + Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: KeycloakJwtFilter + + """ + No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: KeycloakJwtFilter +} + +""" +A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input KeycloakJwtFilter { + """Filter by the object’s `jti` field.""" + jti: UUIDFilter + + """Filter by the object’s `exp` field.""" + exp: IntFilter + + """Filter by the object’s `nbf` field.""" + nbf: IntFilter + + """Filter by the object’s `iat` field.""" + iat: IntFilter + + """Filter by the object’s `iss` field.""" + iss: StringFilter + + """Filter by the object’s `aud` field.""" + aud: StringFilter + + """Filter by the object’s `sub` field.""" + sub: StringFilter + + """Filter by the object’s `typ` field.""" + typ: StringFilter + + """Filter by the object’s `azp` field.""" + azp: StringFilter + + """Filter by the object’s `authTime` field.""" + authTime: IntFilter + + """Filter by the object’s `sessionState` field.""" + sessionState: UUIDFilter + + """Filter by the object’s `acr` field.""" + acr: StringFilter + + """Filter by the object’s `emailVerified` field.""" + emailVerified: BooleanFilter + + """Filter by the object’s `name` field.""" + name: StringFilter + + """Filter by the object’s `preferredUsername` field.""" + preferredUsername: StringFilter + + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `email` field.""" + email: StringFilter + + """Filter by the object’s `brokerSessionId` field.""" + brokerSessionId: StringFilter + + """Filter by the object’s `priorityGroup` field.""" + priorityGroup: StringFilter + + """Filter by the object’s `identityProvider` field.""" + identityProvider: StringFilter + + """Filter by the object’s `userGroups` field.""" + userGroups: StringListFilter + + """Filter by the object’s `authRole` field.""" + authRole: StringFilter + + """Filter by the object’s `ccbcUserBySub` relation.""" + ccbcUserBySub: CcbcUserFilter + + """A related `ccbcUserBySub` exists.""" + ccbcUserBySubExists: Boolean + + """Checks for all expressions in this list.""" + and: [KeycloakJwtFilter!] + + """Checks for any expressions in this list.""" + or: [KeycloakJwtFilter!] + + """Negates the expression.""" + not: KeycloakJwtFilter +} + +""" +A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +""" +input StringListFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean + + """Equal to the specified value.""" + equalTo: [String] + + """Not equal to the specified value.""" + notEqualTo: [String] + + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: [String] + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [String] + + """Less than the specified value.""" + lessThan: [String] + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [String] + + """Greater than the specified value.""" + greaterThan: [String] + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [String] + + """Contains the specified list of values.""" + contains: [String] + + """Contained by the specified list of values.""" + containedBy: [String] + + """Overlaps the specified list of values.""" + overlaps: [String] + + """Any array item is equal to the specified value.""" + anyEqualTo: String + + """Any array item is not equal to the specified value.""" + anyNotEqualTo: String + + """Any array item is less than the specified value.""" + anyLessThan: String + + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: String + + """Any array item is greater than the specified value.""" + anyGreaterThan: String + + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: String +} + +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter + + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter + + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter +} + +""" +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisAssessmentHhFilter { + """ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisAssessmentHhFilter + + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter + + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} + +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter + + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter + + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} + +""" +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyProjectInformationDataFilter { + """ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectInformationDataFilter + + """ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectInformationDataFilter + + """ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectInformationDataFilter +} + +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter + + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter + + """ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsDataFilter +} + +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter + + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter + + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} + +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter + + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter + + """ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityProgressReportDataFilter +} + +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter + + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter + + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} + +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter + + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter + + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} + +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneDataFilter { + """ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneDataFilter + + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter + + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter +} + +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter + + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter + + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} + +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter + + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter + + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} + +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter + + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter + + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} + +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter + + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter + + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} + +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter + + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter + + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} + +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncedFilter { + """ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncedFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncedFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncedFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormTemplate9DataFilter { + """ + Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormTemplate9DataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormTemplate9DataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormTemplate9DataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `counter` field.""" + counter: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `intakesByCounterId` relation.""" + intakesByCounterId: GaplessCounterToManyIntakeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `intakesByCounterId` exist.""" + intakesByCounterIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [GaplessCounterFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [GaplessCounterFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Negates the expression.""" + not: GaplessCounterFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32467,90 +33268,121 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `CcbcUser`.""" +enum CcbcUsersOrderBy { + NATURAL + ID_ASC + ID_DESC + SESSION_SUB_ASC + SESSION_SUB_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + EMAIL_ADDRESS_ASC + EMAIL_ADDRESS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXTERNAL_ANALYST_ASC + EXTERNAL_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `CcbcUser` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CcbcUserCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `sessionSub` field.""" + sessionSub: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `givenName` field.""" + givenName: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `familyName` field.""" + familyName: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `externalAnalyst` field.""" + externalAnalyst: Boolean +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32569,22 +33401,48 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32603,56 +33461,136 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `Application`.""" +enum ApplicationsOrderBy { + NATURAL + ID_ASC + ID_DESC + CCBC_NUMBER_ASC + CCBC_NUMBER_DESC + OWNER_ASC + OWNER_DESC + INTAKE_ID_ASC + INTAKE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PROGRAM_ASC + PROGRAM_DESC + ANALYST_LEAD_ASC + ANALYST_LEAD_DESC + INTAKE_NUMBER_ASC + INTAKE_NUMBER_DESC + ORGANIZATION_NAME_ASC + ORGANIZATION_NAME_DESC + PACKAGE_ASC + PACKAGE_DESC + PROJECT_NAME_ASC + PROJECT_NAME_DESC + STATUS_ASC + STATUS_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + STATUS_SORT_FILTER_ASC + STATUS_SORT_FILTER_DESC + ZONE_ASC + ZONE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `Application` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input ApplicationCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `ccbcNumber` field.""" + ccbcNumber: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `owner` field.""" + owner: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `intakeId` field.""" + intakeId: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `program` field.""" + program: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32671,22 +33609,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32705,22 +33671,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32739,55 +33733,51 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `ApplicationStatus` values.""" -type ApplicationStatusesConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! """ - A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. """ - edges: [ApplicationStatusesEdge!]! + edges: [AssessmentDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `AssessmentData` you could get from the connection.""" totalCount: Int! } -"""Table containing information about possible application statuses""" -type ApplicationStatus implements Node { +type AssessmentData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_status""" rowId: Int! + applicationId: Int! - """ID of the application this status belongs to""" - applicationId: Int - - """The status of the application""" - status: String + """ + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + """ + jsonData: JSON! + assessmentDataType: String """created by user id""" createdBy: Int @@ -32795,8 +33785,11 @@ type ApplicationStatus implements Node { """created at timestamp""" createdAt: Datetime! - """Change reason for analyst status change""" - changeReason: String + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! """archived by user id""" archivedBy: Int @@ -32804,33 +33797,41 @@ type ApplicationStatus implements Node { """archived at timestamp""" archivedAt: Datetime - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """ - Reads a single `Application` that is related to this `ApplicationStatus`. - """ + """Reads a single `Application` that is related to this `AssessmentData`.""" applicationByApplicationId: Application """ - Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + Reads a single `AssessmentType` that is related to this `AssessmentData`. """ - applicationStatusTypeByStatus: ApplicationStatusType + assessmentTypeByAssessmentDataType: AssessmentType - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByUpdatedBy: CcbcUser +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Name of and primary key of the type of an assessment""" + name: String! + + """Description of the assessment type""" + description: String + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -32849,22 +33850,22 @@ type ApplicationStatus implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -32895,10 +33896,10 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32929,10 +33930,10 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32963,10 +33964,137 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! +} + +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ASSESSMENT_DATA_TYPE_ASC + ASSESSMENT_DATA_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input AssessmentDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `assessmentDataType` field.""" + assessmentDataType: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -32985,51 +34113,50 @@ type ApplicationStatus implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -Table containing the different statuses that can be assigned to an application +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusType implements Node { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - id: ID! - - """Name of and primary key of the status of an application""" - name: String! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! - """Description of the status type""" - description: String + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. - """ - visibleByApplicant: Boolean + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """The logical order in which the status should be displayed.""" - statusOrder: Int! +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. - """ - visibleByAnalyst: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33048,22 +34175,50 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusStatusAndApplicationId( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33082,22 +34237,50 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33116,129 +34299,153 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A `AssessmentData` edge in the connection.""" +type AssessmentDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `AssessmentData` at the end of the edge.""" + node: AssessmentData +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + """ + edges: [ConditionalApprovalDataEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + The count of *all* `ConditionalApprovalData` you could get from the connection. + """ + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + """Unique id for the row""" + rowId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The foreign key of an application""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ConditionalApprovalData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData +} + +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - STATUS_ASC - STATUS_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC CREATED_AT_DESC - CHANGE_REASON_ASC - CHANGE_REASON_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC UPDATED_BY_ASC UPDATED_BY_DESC UPDATED_AT_ASC UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationStatus` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationStatusCondition { +input ConditionalApprovalDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `status` field.""" - status: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33246,97 +34453,116 @@ input ApplicationStatusCondition { """Checks for equality with the object’s `createdAt` field.""" createdAt: Datetime - """Checks for equality with the object’s `changeReason` field.""" - changeReason: String + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime """Checks for equality with the object’s `archivedBy` field.""" archivedBy: Int """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. """ - edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + edges: [ApplicationGisAssessmentHhsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. + """ totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing data for the gis assessment hh numbers""" +type ApplicationGisAssessmentHh implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Application` at the end of the edge.""" - node: Application + """Primary key and unique identifier""" + rowId: Int! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """The application_id of the application this record is associated with""" + applicationId: Int! - """Only read the last `n` values of the set.""" - last: Int + """The number of eligible households""" + eligible: Float - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The number of eligible indigenous households""" + eligibleIndigenous: Float - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""Methods to use when ordering `Application`.""" -enum ApplicationsOrderBy { +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh +} + +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { NATURAL ID_ASC ID_DESC - CCBC_NUMBER_ASC - CCBC_NUMBER_DESC - OWNER_ASC - OWNER_DESC - INTAKE_ID_ASC - INTAKE_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33349,100 +34575,165 @@ enum ApplicationsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - PROGRAM_ASC - PROGRAM_DESC - ANALYST_LEAD_ASC - ANALYST_LEAD_DESC - INTAKE_NUMBER_ASC - INTAKE_NUMBER_DESC - ORGANIZATION_NAME_ASC - ORGANIZATION_NAME_DESC - PACKAGE_ASC - PACKAGE_DESC - PROJECT_NAME_ASC - PROJECT_NAME_DESC - STATUS_ASC - STATUS_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - STATUS_SORT_FILTER_ASC - STATUS_SORT_FILTER_DESC - ZONE_ASC - ZONE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Application` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationGisAssessmentHh` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationCondition { +input ApplicationGisAssessmentHhCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `ccbcNumber` field.""" - ccbcNumber: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `eligible` field.""" + eligible: Float + + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! + + """ + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + """ + edges: [ApplicationGisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationGisData` you could get from the connection. + """ + totalCount: Int! +} - """Checks for equality with the object’s `owner` field.""" - owner: String +type ApplicationGisData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + batchId: Int + applicationId: Int - """Checks for equality with the object’s `intakeId` field.""" - intakeId: Int + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + """ + jsonData: JSON! - """Checks for equality with the object’s `createdBy` field.""" + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedBy` field.""" + """updated by user id""" updatedBy: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """updated at timestamp""" + updatedAt: Datetime! - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime - """Checks for equality with the object’s `program` field.""" - program: String -} + """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + gisDataByBatchId: GisData -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationGisData`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the uploaded GIS data in JSON format""" +type GisData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Primary key and unique identifier""" + rowId: Int! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -33461,52 +34752,22 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. - """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataBatchIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33525,52 +34786,22 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. - """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationFilter + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33589,139 +34820,100 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! - - """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. - """ - edges: [AttachmentsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Attachment` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing information about uploaded attachments""" -type Attachment implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the attachment""" - rowId: Int! - - """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service - """ - file: UUID - - """Description of the attachment""" - description: String - - """Original uploaded file name""" - fileName: String - - """Original uploaded file type""" - fileType: String + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! - """Original uploaded file size""" - fileSize: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to - """ - applicationId: Int! + """Only read the last `n` values of the set.""" + last: Int - """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references - """ - applicationStatusId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated by user id""" - updatedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """updated at timestamp""" - updatedAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """archived by user id""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! - """archived at timestamp""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Reads a single `Application` that is related to this `Attachment`.""" - applicationByApplicationId: Application + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `ApplicationStatus` that is related to this `Attachment`. - """ - applicationStatusByApplicationStatusId: ApplicationStatus + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `Attachment`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `Attachment`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `Attachment`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `Attachment` at the end of the edge.""" - node: Attachment + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { +"""Methods to use when ordering `ApplicationGisData`.""" +enum ApplicationGisDataOrderBy { NATURAL ID_ASC ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC + BATCH_ID_ASC + BATCH_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33739,33 +34931,21 @@ enum AttachmentsOrderBy { } """ -A condition to be used against `Attachment` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationGisData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input AttachmentCondition { +input ApplicationGisDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `file` field.""" - file: UUID - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `fileName` field.""" - fileName: String - - """Checks for equality with the object’s `fileType` field.""" - fileType: String - - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String + """Checks for equality with the object’s `batchId` field.""" + batchId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33787,16 +34967,16 @@ input AttachmentCondition { } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33805,16 +34985,18 @@ type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationI totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33833,32 +35015,32 @@ type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33867,16 +35049,18 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33895,32 +35079,32 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33929,16 +35113,18 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33957,32 +35143,32 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33991,16 +35177,18 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34019,94 +35207,67 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } - -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { + +"""A `ApplicationGisData` edge in the connection.""" +type ApplicationGisDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `ApplicationGisData` at the end of the edge.""" + node: ApplicationGisData } -"""A connection to a list of `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! +"""A connection to a list of `ProjectInformationData` values.""" +type ProjectInformationDataConnection { + """A list of `ProjectInformationData` objects.""" + nodes: [ProjectInformationData]! """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. """ - edges: [ApplicationFormDataEdge!]! + edges: [ProjectInformationDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationFormData` you could get from the connection. + The count of *all* `ProjectInformationData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to form data""" -type ApplicationFormData implements Node { +"""Table to store project information data""" +type ProjectInformationData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - formDataId: Int! + """Unique id for the row""" + rowId: Int! """The foreign key of an application""" - applicationId: Int! - - """ - Reads a single `FormData` that is related to this `ApplicationFormData`. - """ - formDataByFormDataId: FormData - - """ - Reads a single `Application` that is related to this `ApplicationFormData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold applicant form data""" -type FormData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The unique id of the form data""" - rowId: Int! + applicationId: Int """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) """ jsonData: JSON! - """Column saving the key of the last edited form page""" - lastEditedPage: String - - """Column referencing the form data status type, defaults to draft""" - formDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -34125,322 +35286,343 @@ type FormData implements Node { """archived at timestamp""" archivedAt: Datetime - """Schema for the respective form_data""" - formSchemaId: Int - - """Column to track analysts reason for changing form data""" - reasonForChange: String - """ - Reads a single `FormDataStatusType` that is related to this `FormData`. + Reads a single `Application` that is related to this `ProjectInformationData`. """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form - - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +"""A `ProjectInformationData` edge in the connection.""" +type ProjectInformationDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `ProjectInformationData`.""" +enum ProjectInformationDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `ProjectInformationData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ProjectInformationDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! + """ + The count of *all* `ApplicationClaimsData` you could get from the connection. + """ + totalCount: Int! } -"""The statuses applicable to a form""" -type FormDataStatusType implements Node { +"""Table containing the claims data for the given application""" +type ApplicationClaimsData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The name of the status type""" - name: String! + """Unique id for the claims""" + rowId: Int! - """The description of the status type""" - description: String + """Id of the application the claims belongs to""" + applicationId: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """The claims form json data""" + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """archived at timestamp""" + archivedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Column to track if record was created, updated or deleted for history""" + historyOperation: String - """Only read the last `n` values of the set.""" - last: Int + """ + Reads a single `Application` that is related to this `ApplicationClaimsData`. + """ + applicationByApplicationId: Application - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! +"""Methods to use when ordering `ApplicationClaimsData`.""" +enum ApplicationClaimsDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A condition to be used against `ApplicationClaimsData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationClaimsDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationClaimsExcelData` values.""" +type ApplicationClaimsExcelDataConnection { + """A list of `ApplicationClaimsExcelData` objects.""" + nodes: [ApplicationClaimsExcelData]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsExcelDataEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + The count of *all* `ApplicationClaimsExcelData` you could get from the connection. + """ + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! +"""Table containing the claims excel data for the given application""" +type ApplicationClaimsExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for the claims excel data""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """ID of the application this data belongs to""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! -} + """archived by user id""" + archivedBy: Int -"""A connection to a list of `FormData` values.""" -type FormDataConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `FormData` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. """ - edges: [FormDataEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `FormData` edge in the connection.""" -type FormDataEdge { +"""A `ApplicationClaimsExcelData` edge in the connection.""" +type ApplicationClaimsExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData + """The `ApplicationClaimsExcelData` at the end of the edge.""" + node: ApplicationClaimsExcelData } -"""Methods to use when ordering `FormData`.""" -enum FormDataOrderBy { +"""Methods to use when ordering `ApplicationClaimsExcelData`.""" +enum ApplicationClaimsExcelDataOrderBy { NATURAL ID_ASC ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - LAST_EDITED_PAGE_ASC - LAST_EDITED_PAGE_DESC - FORM_DATA_STATUS_TYPE_ID_ASC - FORM_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -34453,31 +35635,24 @@ enum FormDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - FORM_SCHEMA_ID_ASC - FORM_SCHEMA_ID_DESC - REASON_FOR_CHANGE_ASC - REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormData` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationClaimsExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataCondition { +input ApplicationClaimsExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `lastEditedPage` field.""" - lastEditedPage: String - - """Checks for equality with the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34495,938 +35670,494 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int - - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `ApplicationCommunityProgressReportData` values. """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationCommunityProgressReportDataConnection { + """A list of `ApplicationCommunityProgressReportData` objects.""" + nodes: [ApplicationCommunityProgressReportData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCommunityProgressReportDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} - """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +Table containing the Community Progress Report data for the given application """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +type ApplicationCommunityProgressReportData implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + id: ID! -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Unique ID for the Community Progress Report""" + rowId: Int! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ID of the application this Community Progress Report belongs to""" + applicationId: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + The due date, date received and the file information of the Community Progress Report Excel file + """ + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """created by user id""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated by user id""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """archived by user id""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived at timestamp""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """The id of the excel data that this record is associated with""" + excelDataId: Int -"""A connection to a list of `Form` values, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! + """History operation""" + historyOperation: String """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} + applicationByApplicationId: Application -"""Table to hold the json_schema for forms""" -type Form implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - id: ID! - - """Primary key on form""" - rowId: Int! - - """The end url for the form data""" - slug: String - - """The JSON schema for the respective form""" - jsonSchema: JSON! - - """Description of the form""" - description: String - - """The type of form being stored""" - formType: String - - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType - - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! - - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataStatusTypeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! -} + ccbcUserByCreatedBy: CcbcUser -"""Table containing the different types of forms used in the application""" -type FormType implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - id: ID! - - """Primary key and unique identifier of the type of form""" - name: String! - - """Description of the type of form""" - description: String - - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormsConnection! -} - -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! + ccbcUserByUpdatedBy: CcbcUser """ - A list of edges which contains the `Form` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - edges: [FormsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! + ccbcUserByArchivedBy: CcbcUser } -"""A `Form` edge in the connection.""" -type FormsEdge { +"""A `ApplicationCommunityProgressReportData` edge in the connection.""" +type ApplicationCommunityProgressReportDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `ApplicationCommunityProgressReportData` at the end of the edge.""" + node: ApplicationCommunityProgressReportData } -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { +"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" +enum ApplicationCommunityProgressReportDataOrderBy { NATURAL ID_ASC ID_DESC - SLUG_ASC - SLUG_DESC - JSON_SCHEMA_ASC - JSON_SCHEMA_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FORM_TYPE_ASC - FORM_TYPE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationCommunityProgressReportData` object +types. All fields are tested for equality and combined with a logical ‘and.’ """ -input FormCondition { +input ApplicationCommunityProgressReportDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `slug` field.""" - slug: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonSchema` field.""" - jsonSchema: JSON + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Checks for equality with the object’s `formType` field.""" - formType: String + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationCommunityReportExcelData` values. """ -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type ApplicationCommunityReportExcelDataConnection { + """A list of `ApplicationCommunityReportExcelData` objects.""" + nodes: [ApplicationCommunityReportExcelData]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. """ - edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [ApplicationCommunityReportExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +Table containing the Community Report excel data for the given application """ -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType - - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +type ApplicationCommunityReportExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Unique ID for the Community Report excel data""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ID of the application this Community Report belongs to""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """updated by user id""" + updatedBy: Int -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """updated at timestamp""" + updatedAt: Datetime! -""" -A condition to be used against `FormDataStatusType` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input FormDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String + """archived by user id""" + archivedBy: Int - """Checks for equality with the object’s `description` field.""" - description: String -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! +"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" +enum ApplicationCommunityReportExcelDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A condition to be used against `ApplicationCommunityReportExcelData` object +types. All fields are tested for equality and combined with a logical ‘and.’ """ -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +input ApplicationCommunityReportExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationInternalDescriptionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationInternalDescription` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Table containing the internal description for the given application""" +type ApplicationInternalDescription implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Unique id for the row""" + rowId: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Id of the application the description belongs to""" + applicationId: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The internal description for the given application""" + description: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """created by user id""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """created at timestamp""" + createdAt: Datetime! -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """updated by user id""" + updatedBy: Int - """The `Form` at the end of the edge.""" - node: Form + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `Application` that is related to this `ApplicationInternalDescription`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition +"""A `ApplicationInternalDescription` edge in the connection.""" +type ApplicationInternalDescriptionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """The `ApplicationInternalDescription` at the end of the edge.""" + node: ApplicationInternalDescription } -"""Methods to use when ordering `ApplicationFormData`.""" -enum ApplicationFormDataOrderBy { +"""Methods to use when ordering `ApplicationInternalDescription`.""" +enum ApplicationInternalDescriptionsOrderBy { NATURAL - FORM_DATA_ID_ASC - FORM_DATA_ID_DESC + ID_ASC + ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationFormData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationInternalDescription` object types. +All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationFormDataCondition { - """Checks for equality with the object’s `formDataId` field.""" - formDataId: Int +input ApplicationInternalDescriptionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int -} - -""" -A connection to a list of `Application` values, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - """ - A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! + """Checks for equality with the object’s `description` field.""" + description: String - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime -""" -A `Application` edge in the connection, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The `Application` at the end of the edge.""" - node: Application -} + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +"""A connection to a list of `ApplicationMilestoneData` values.""" +type ApplicationMilestoneDataConnection { + """A list of `ApplicationMilestoneData` objects.""" + nodes: [ApplicationMilestoneData]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [ApplicationMilestoneDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. + The count of *all* `ApplicationMilestoneData` you could get from the connection. """ totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead implements Node { +"""Table containing the milestone data for the given application""" +type ApplicationMilestoneData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_analyst_lead""" + """Unique id for the milestone""" rowId: Int! - """ID of the application this analyst lead belongs to""" + """Id of the application the milestone belongs to""" applicationId: Int - """ID of the analyst this analyst lead belongs to""" - analystId: Int + """The milestone form json data""" + jsonData: JSON! + + """The id of the excel data that this record is associated with""" + excelDataId: Int """created by user id""" createdBy: Int @@ -35446,50 +36177,50 @@ type ApplicationAnalystLead implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. - """ - applicationByApplicationId: Application + """History operation""" + historyOperation: String """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + Reads a single `Application` that is related to this `ApplicationMilestoneData`. """ - analystByAnalystId: Analyst + applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `ApplicationMilestoneData` edge in the connection.""" +type ApplicationMilestoneDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead + """The `ApplicationMilestoneData` at the end of the edge.""" + node: ApplicationMilestoneData } -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { +"""Methods to use when ordering `ApplicationMilestoneData`.""" +enum ApplicationMilestoneDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35502,23 +36233,28 @@ enum ApplicationAnalystLeadsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnalystLeadCondition { +input ApplicationMilestoneDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `analystId` field.""" - analystId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -35537,70 +36273,46 @@ input ApplicationAnalystLeadCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [ApplicationMilestoneExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationRfiData` you could get from the connection. + The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationRfiData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - rfiDataId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" - rfiDataByRfiDataId: RfiData - - """ - Reads a single `Application` that is related to this `ApplicationRfiData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold RFI form data""" -type RfiData implements Node { +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique ID for the milestone excel data""" rowId: Int! - """Reference number assigned to the RFI""" - rfiNumber: String + """ID of the application this data belongs to""" + applicationId: Int - """ - The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) - """ + """The data imported from the excel filled by the respondent""" jsonData: JSON! - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -35619,300 +36331,45 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """ + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `RfiData`.""" - ccbcUserByArchivedBy: CcbcUser - - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! - - """Computed column to return all attachement rows for an rfi_data row""" - attachments( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! -} - -"""The statuses applicable to an RFI""" -type RfiDataStatusType implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. """ - id: ID! - - """The name of the status type""" - name: String! - - """The description of the status type""" - description: String - - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): RfiDataConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} - -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + ccbcUserByUpdatedBy: CcbcUser """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. """ - edges: [RfiDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! + ccbcUserByArchivedBy: CcbcUser } -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData } -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { NATURAL ID_ASC ID_DESC - RFI_NUMBER_ASC - RFI_NUMBER_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - RFI_DATA_STATUS_TYPE_ID_ASC - RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35930,67 +36387,121 @@ enum RfiDataOrderBy { } """ -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input RfiDataCondition { +input ApplicationMilestoneExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! + + """ + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. + """ + edges: [ApplicationSowDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the SoW data for the given application""" +type ApplicationSowData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the SoW""" + rowId: Int! - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ID of the application this SoW belongs to""" + applicationId: Int - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) + """ + jsonData: JSON! - """Checks for equality with the object’s `createdBy` field.""" + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedBy` field.""" + """updated by user id""" updatedBy: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """updated at timestamp""" + updatedAt: Datetime! - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime -} -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """The amendment number""" + amendmentNumber: Int + + """Column identifying if the record is an amendment""" + isAmendment: Boolean """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationSowData`. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! + applicationByApplicationId: Application - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByCreatedBy: CcbcUser -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -36009,48 +36520,22 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -36069,48 +36554,22 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -36129,167 +36588,90 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { - NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int -} - -""" -A connection to a list of `Application` values, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application -} - -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData -} - -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! - - """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. - """ - edges: [AssessmentDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `AssessmentData` you could get from the connection.""" - totalCount: Int! -} + filter: SowTab7Filter + ): SowTab7SConnection! -type AssessmentData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - applicationId: Int! + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) - """ - jsonData: JSON! - assessmentDataType: String + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab8Condition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType + """Only read the last `n` values of the set.""" + last: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByCreatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -Table containing the different assessment types that can be assigned to an assessment -""" -type AssessmentType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Name of and primary key of the type of an assessment""" - name: String! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Description of the assessment type""" - description: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36308,22 +36690,22 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36342,22 +36724,22 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36388,10 +36770,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36422,10 +36804,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + ccbcUsersBySowTab2SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36456,103 +36838,78 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! -""" -A condition to be used against `AssessmentData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `assessmentDataType` field.""" - assessmentDataType: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `Application` at the end of the edge.""" - node: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36571,50 +36928,22 @@ type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36633,50 +36962,22 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36695,50 +36996,22 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36757,64 +37030,50 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. + A list of edges which contains the `SowTab1` and cursor to aid in pagination. """ - edges: [ApplicationPackagesEdge!]! + edges: [SowTab1SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ + """The count of *all* `SowTab1` you could get from the connection.""" totalCount: Int! } -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { +type SowTab1 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_package""" rowId: Int! + sowId: Int - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) + """ + jsonData: JSON! """created by user id""" createdBy: Int @@ -36834,45 +37093,37 @@ type ApplicationPackage implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { +"""A `SowTab1` edge in the connection.""" +type SowTab1SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage + """The `SowTab1` at the end of the edge.""" + node: SowTab1 } -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { +"""Methods to use when ordering `SowTab1`.""" +enum SowTab1SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -36890,18 +37141,17 @@ enum ApplicationPackagesOrderBy { } """ -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPackageCondition { +input SowTab1Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Checks for equality with the object’s `package` field.""" - package: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -36922,40 +37172,38 @@ input ApplicationPackageCondition { archivedAt: Datetime } -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! +"""A connection to a list of `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! """ - A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + A list of edges which contains the `SowTab2` and cursor to aid in pagination. """ - edges: [ConditionalApprovalDataEdge!]! + edges: [SowTab2SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ConditionalApprovalData` you could get from the connection. - """ + """The count of *all* `SowTab2` you could get from the connection.""" totalCount: Int! } -"""Table to store conditional approval data""" -type ConditionalApprovalData implements Node { +"""Table containing the detailed budget data for the given SoW""" +type SowTab2 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" + """Unique ID for the SoW detailed budget record""" rowId: Int! - """The foreign key of an application""" - applicationId: Int + """ID of the SoW""" + sowId: Int """ - The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) """ jsonData: JSON! @@ -36977,43 +37225,35 @@ type ConditionalApprovalData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData + """The `SowTab2` at the end of the edge.""" + node: SowTab2 } -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + SOW_ID_ASC + SOW_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -37033,15 +37273,14 @@ enum ConditionalApprovalDataOrderBy { } """ -A condition to be used against `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ConditionalApprovalDataCondition { +input SowTab2Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -37065,36 +37304,33 @@ input ConditionalApprovalDataCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationGisData` values.""" -type ApplicationGisDataConnection { - """A list of `ApplicationGisData` objects.""" - nodes: [ApplicationGisData]! +"""A connection to a list of `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! """ - A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + A list of edges which contains the `SowTab7` and cursor to aid in pagination. """ - edges: [ApplicationGisDataEdge!]! + edges: [SowTab7SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationGisData` you could get from the connection. - """ + """The count of *all* `SowTab7` you could get from the connection.""" totalCount: Int! } -type ApplicationGisData implements Node { +type SowTab7 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! rowId: Int! - batchId: Int - applicationId: Int + sowId: Int """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) """ jsonData: JSON! @@ -37116,252 +37352,167 @@ type ApplicationGisData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" - gisDataByBatchId: GisData - - """ - Reads a single `Application` that is related to this `ApplicationGisData`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByArchivedBy: CcbcUser } -"""Table containing the uploaded GIS data in JSON format""" -type GisData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: Int! - - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByArchivedBy: CcbcUser - - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The `SowTab7` at the end of the edge.""" + node: SowTab7 +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab7Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + A list of edges which contains the `SowTab8` and cursor to aid in pagination. + """ + edges: [SowTab8SEdge!]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The count of *all* `SowTab8` you could get from the connection.""" + totalCount: Int! +} - """Only read the last `n` values of the set.""" - last: Int +"""Table containing the detailed budget data for the given SoW""" +type SowTab8 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Unique ID for the SoW Tab 8""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ID of the SoW""" + sowId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + """ + jsonData: JSON! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + """updated by user id""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """updated at timestamp""" + updatedAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """archived by user id""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + applicationSowDataBySowId: ApplicationSowData - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! +"""A `SowTab8` edge in the connection.""" +type SowTab8SEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `SowTab8` at the end of the edge.""" + node: SowTab8 } -"""Methods to use when ordering `ApplicationGisData`.""" -enum ApplicationGisDataOrderBy { +"""Methods to use when ordering `SowTab8`.""" +enum SowTab8SOrderBy { NATURAL ID_ASC ID_DESC - BATCH_ID_ASC - BATCH_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + SOW_ID_ASC + SOW_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -37381,18 +37532,14 @@ enum ApplicationGisDataOrderBy { } """ -A condition to be used against `ApplicationGisData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationGisDataCondition { +input SowTab8Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `batchId` field.""" - batchId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -37416,37 +37563,33 @@ input ApplicationGisDataCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37465,32 +37608,30 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37499,18 +37640,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37529,32 +37668,30 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37563,18 +37700,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37593,32 +37728,30 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37627,18 +37760,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37657,163 +37788,48 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""A `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - announcementId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean - - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String - - """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. - """ - announcementByAnnouncementId: Announcement - - """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""Table to hold the announcement data""" -type Announcement implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The unique id of the announcement data""" - rowId: Int! - - """List of CCBC number of the projects included in announcement""" - ccbcNumbers: String - - """ - The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByUpdatedBy: CcbcUser +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByArchivedBy: CcbcUser + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37832,22 +37848,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37866,56 +37908,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: SowTab2Filter + ): SowTab2SConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37934,22 +37968,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37968,151 +38028,90 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `ApplicationAnnouncement`.""" -enum ApplicationAnnouncementsOrderBy { - NATURAL - ANNOUNCEMENT_ID_ASC - ANNOUNCEMENT_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - IS_PRIMARY_ASC - IS_PRIMARY_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationAnnouncement` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationAnnouncementCondition { - """Checks for equality with the object’s `announcementId` field.""" - announcementId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `isPrimary` field.""" - isPrimary: Boolean - - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab7Condition - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38121,20 +38120,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38153,32 +38148,30 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38187,20 +38180,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38219,32 +38208,30 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38253,20 +38240,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38285,67 +38268,132 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A `ApplicationAnnouncement` edge in the connection.""" -type ApplicationAnnouncementsEdge { +"""A `ApplicationSowData` edge in the connection.""" +type ApplicationSowDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnnouncement` at the end of the edge.""" - node: ApplicationAnnouncement + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData } -"""A connection to a list of `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! +"""Methods to use when ordering `ApplicationSowData`.""" +enum ApplicationSowDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + IS_AMENDMENT_ASC + IS_AMENDMENT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationSowData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationSowDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int + + """Checks for equality with the object’s `isAmendment` field.""" + isAmendment: Boolean +} + +"""A connection to a list of `ChangeRequestData` values.""" +type ChangeRequestDataConnection { + """A list of `ChangeRequestData` objects.""" + nodes: [ChangeRequestData]! """ - A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. + A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. """ - edges: [ApplicationGisAssessmentHhsEdge!]! + edges: [ChangeRequestDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. + The count of *all* `ChangeRequestData` you could get from the connection. """ totalCount: Int! } -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh implements Node { +"""Table to store change request data""" +type ChangeRequestData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier""" + """Unique id for the row""" rowId: Int! - """The application_id of the application this record is associated with""" - applicationId: Int! - - """The number of eligible households""" - eligible: Float + """The foreign key of an application""" + applicationId: Int - """The number of eligible indigenous households""" - eligibleIndigenous: Float + """The json form data of the change request form""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -38364,48 +38412,41 @@ type ApplicationGisAssessmentHh implements Node { """archived at timestamp""" archivedAt: Datetime + amendmentNumber: Int """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. + Reads a single `Application` that is related to this `ChangeRequestData`. """ applicationByApplicationId: Application - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh + """The `ChangeRequestData` at the end of the edge.""" + node: ChangeRequestData } -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { +"""Methods to use when ordering `ChangeRequestData`.""" +enum ChangeRequestDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38418,26 +38459,25 @@ enum ApplicationGisAssessmentHhsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationGisAssessmentHh` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ChangeRequestData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationGisAssessmentHhCondition { +input ChangeRequestDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `eligible` field.""" - eligible: Float - - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -38456,45 +38496,50 @@ input ApplicationGisAssessmentHhCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int } -"""A connection to a list of `ApplicationSowData` values.""" -type ApplicationSowDataConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. + A list of edges which contains the `Notification` and cursor to aid in pagination. """ - edges: [ApplicationSowDataEdge!]! + edges: [NotificationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Notification` you could get from the connection.""" totalCount: Int! } -"""Table containing the SoW data for the given application""" -type ApplicationSowData implements Node { +"""Table containing list of application notifications""" +type Notification implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW""" + """Unique ID for each notification""" rowId: Int! - """ID of the application this SoW belongs to""" + """Type of the notification""" + notificationType: String + + """ID of the application this notification belongs to""" applicationId: Int - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) - """ + """Additional data for the notification""" jsonData: JSON! + """Column referencing the email record""" + emailRecordId: Int + """created by user id""" createdBy: Int @@ -38513,102 +38558,79 @@ type ApplicationSowData implements Node { """archived at timestamp""" archivedAt: Datetime - """The amendment number""" - amendmentNumber: Int - - """Column identifying if the record is an amendment""" - isAmendment: Boolean - - """ - Reads a single `Application` that is related to this `ApplicationSowData`. - """ + """Reads a single `Application` that is related to this `Notification`.""" applicationByApplicationId: Application - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ + """Reads a single `EmailRecord` that is related to this `Notification`.""" + emailRecordByEmailRecordId: EmailRecord + + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByUpdatedBy: CcbcUser + """Reads a single `CcbcUser` that is related to this `Notification`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""Table containing list of application email_records""" +type EmailRecord implements Node { """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - ccbcUserByArchivedBy: CcbcUser + id: ID! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for each email sent""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """Email Address(es) of the recipients""" + toEmail: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Email Address(es) of the CC recipients""" + ccEmail: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Subject of the email""" + subject: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Body of the email""" + body: String - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """Message ID of the email returned by the email server""" + messageId: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab2Condition + """Additional data for the email""" + jsonData: JSON! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! + """created by user id""" + createdBy: Int - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( - """Only read the first `n` values of the set.""" - first: Int + """created at timestamp""" + createdAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """updated by user id""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived by user id""" + archivedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived at timestamp""" + archivedAt: Datetime - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -38627,22 +38649,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38661,22 +38683,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationFilter + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38707,10 +38729,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38741,10 +38763,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38775,78 +38797,106 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { + NATURAL + ID_ASC + ID_DESC + NOTIFICATION_TYPE_ASC + NOTIFICATION_TYPE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EMAIL_RECORD_ID_ASC + EMAIL_RECORD_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `Notification` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input NotificationCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `notificationType` field.""" + notificationType: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `emailRecordId` field.""" + emailRecordId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( +"""A `Application` edge in the connection, with data from `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38865,56 +38915,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: NotificationFilter + ): NotificationsConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38933,56 +38977,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: NotificationFilter + ): NotificationsConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39001,56 +39039,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: NotificationFilter + ): NotificationsConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39069,55 +39101,64 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! +"""A `Notification` edge in the connection.""" +type NotificationsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Notification` at the end of the edge.""" + node: Notification +} + +"""A connection to a list of `ApplicationPackage` values.""" +type ApplicationPackagesConnection { + """A list of `ApplicationPackage` objects.""" + nodes: [ApplicationPackage]! """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [SowTab2SEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab2` you could get from the connection.""" + """ + The count of *all* `ApplicationPackage` you could get from the connection. + """ totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab2 implements Node { +"""Table containing the package the application is assigned to""" +type ApplicationPackage implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW detailed budget record""" + """Unique ID for the application_package""" rowId: Int! - """ID of the SoW""" - sowId: Int + """The application_id of the application this record is associated with""" + applicationId: Int - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) - """ - jsonData: JSON! + """The package number the application is assigned to""" + package: Int """created by user id""" createdBy: Int @@ -39137,37 +39178,45 @@ type SowTab2 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationPackage`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { +"""A `ApplicationPackage` edge in the connection.""" +type ApplicationPackagesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab2` at the end of the edge.""" - node: SowTab2 + """The `ApplicationPackage` at the end of the edge.""" + node: ApplicationPackage } -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { +"""Methods to use when ordering `ApplicationPackage`.""" +enum ApplicationPackagesOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PACKAGE_ASC + PACKAGE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -39185,17 +39234,18 @@ enum SowTab2SOrderBy { } """ -A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationPackage` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input SowTab2Condition { +input ApplicationPackageCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `package` field.""" + package: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -39216,35 +39266,47 @@ input SowTab2Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! """ - A list of edges which contains the `SowTab1` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [SowTab1SEdge!]! + edges: [ApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab1` you could get from the connection.""" + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ totalCount: Int! } -type SowTab1 implements Node { +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + + """Unique ID for the application_pending_change_request""" rowId: Int! - sowId: Int """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) + ID of the application this application_pending_change_request belongs to """ - jsonData: JSON! + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String """created by user id""" createdBy: Int @@ -39264,37 +39326,47 @@ type SowTab1 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab1` at the end of the edge.""" - node: SowTab1 + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest } -"""Methods to use when ordering `SowTab1`.""" -enum SowTab1SOrderBy { +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -39312,17 +39384,21 @@ enum SowTab1SOrderBy { } """ -A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab1Condition { +input ApplicationPendingChangeRequestCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -39343,35 +39419,40 @@ input SowTab1Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab7` values.""" -type SowTab7SConnection { - """A list of `SowTab7` objects.""" - nodes: [SowTab7]! +"""A connection to a list of `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! """ - A list of edges which contains the `SowTab7` and cursor to aid in pagination. + A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. """ - edges: [SowTab7SEdge!]! + edges: [ApplicationProjectTypesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab7` you could get from the connection.""" + """ + The count of *all* `ApplicationProjectType` you could get from the connection. + """ totalCount: Int! } -type SowTab7 implements Node { +"""Table containing the project type of the application""" +type ApplicationProjectType implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + + """Unique ID for the application_project_type""" rowId: Int! - sowId: Int - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) - """ - jsonData: JSON! + """ID of the application this application_project_type belongs to""" + applicationId: Int + + """Column containing the project type of the application""" + projectType: String """created by user id""" createdBy: Int @@ -39391,37 +39472,45 @@ type SowTab7 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationProjectType`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab7` at the end of the edge.""" - node: SowTab7 + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType } -"""Methods to use when ordering `SowTab7`.""" -enum SowTab7SOrderBy { +"""Methods to use when ordering `ApplicationProjectType`.""" +enum ApplicationProjectTypesOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PROJECT_TYPE_ASC + PROJECT_TYPE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -39439,17 +39528,18 @@ enum SowTab7SOrderBy { } """ -A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationProjectType` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input SowTab7Condition { +input ApplicationProjectTypeCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `projectType` field.""" + projectType: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -39470,40 +39560,59 @@ input SowTab7Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +"""A connection to a list of `Attachment` values.""" +type AttachmentsConnection { + """A list of `Attachment` objects.""" + nodes: [Attachment]! """ - A list of edges which contains the `SowTab8` and cursor to aid in pagination. + A list of edges which contains the `Attachment` and cursor to aid in pagination. """ - edges: [SowTab8SEdge!]! + edges: [AttachmentsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """The count of *all* `Attachment` you could get from the connection.""" totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab8 implements Node { +"""Table containing information about uploaded attachments""" +type Attachment implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW Tab 8""" + """Unique ID for the attachment""" rowId: Int! - """ID of the SoW""" - sowId: Int + """ + Universally Unique ID for the attachment, created by the fastapi storage micro-service + """ + file: UUID + + """Description of the attachment""" + description: String + + """Original uploaded file name""" + fileName: String + + """Original uploaded file type""" + fileType: String + + """Original uploaded file size""" + fileSize: String """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + The id of the project (ccbc_public.application.id) that the attachment was uploaded to """ - jsonData: JSON! + applicationId: Int! + + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: Int """created by user id""" createdBy: Int @@ -39523,112 +39632,281 @@ type SowTab8 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" - applicationSowDataBySowId: ApplicationSowData + """Reads a single `Application` that is related to this `Attachment`.""" + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `ApplicationStatus` that is related to this `Attachment`. + """ + applicationStatusByApplicationStatusId: ApplicationStatus + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing information about possible application statuses""" +type ApplicationStatus implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `SowTab8` at the end of the edge.""" - node: SowTab8 -} + """Unique ID for the application_status""" + rowId: Int! -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ID of the application this status belongs to""" + applicationId: Int -""" -A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab8Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The status of the application""" + status: String - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """Change reason for analyst status change""" + changeReason: String + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """ + Reads a single `Application` that is related to this `ApplicationStatus`. + """ + applicationByApplicationId: Application + + """ + Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + """ + applicationStatusTypeByStatus: ApplicationStatusType + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentApplicationStatusIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +""" +Table containing the different statuses that can be assigned to an application +""" +type ApplicationStatusType implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Name of and primary key of the status of an application""" + name: String! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Description of the status type""" + description: String -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + """ + visibleByApplicant: Boolean - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The logical order in which the status should be displayed.""" + statusOrder: Int! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. + """ + visibleByAnalyst: Boolean + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -39647,48 +39925,56 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusStatusAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39707,48 +39993,56 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39767,48 +40061,143 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus +} - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + STATUS_ASC + STATUS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + CHANGE_REASON_ASC + CHANGE_REASON_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatus` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `status` field.""" + status: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `changeReason` field.""" + changeReason: String + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -39827,30 +40216,32 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39859,16 +40250,18 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39887,30 +40280,32 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39919,16 +40314,18 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39947,30 +40344,32 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39979,16 +40378,18 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40007,48 +40408,133 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +"""Methods to use when ordering `Attachment`.""" +enum AttachmentsOrderBy { + NATURAL + ID_ASC + ID_DESC + FILE_ASC + FILE_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FILE_NAME_ASC + FILE_NAME_DESC + FILE_TYPE_ASC + FILE_TYPE_DESC + FILE_SIZE_ASC + FILE_SIZE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + APPLICATION_STATUS_ID_ASC + APPLICATION_STATUS_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input AttachmentCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `file` field.""" + file: UUID + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `fileName` field.""" + fileName: String + + """Checks for equality with the object’s `fileType` field.""" + fileType: String + + """Checks for equality with the object’s `fileSize` field.""" + fileSize: String + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `applicationStatusId` field.""" + applicationStatusId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab7Condition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab7Filter - ): SowTab7SConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -40067,30 +40553,32 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40099,16 +40587,16 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40127,30 +40615,32 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40159,16 +40649,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40187,30 +40677,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40219,16 +40711,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40247,99 +40739,127 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A `Attachment` edge in the connection.""" +type AttachmentsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment +} + +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationAnalystLeadsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationAnalystLead` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the analyst lead for the given application""" +type ApplicationAnalystLead implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the application_analyst_lead""" + rowId: Int! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this analyst lead belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ID of the analyst this analyst lead belongs to""" + analystId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab8Condition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab8Filter - ): SowTab8SConnection! + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationAnalystLead`. + """ + applicationByApplicationId: Application + + """ + Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + """ + analystByAnalystId: Analyst + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationSowData` edge in the connection.""" -type ApplicationSowDataEdge { +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead } -"""Methods to use when ordering `ApplicationSowData`.""" -enum ApplicationSowDataOrderBy { +"""Methods to use when ordering `ApplicationAnalystLead`.""" +enum ApplicationAnalystLeadsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + ANALYST_ID_ASC + ANALYST_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -40352,27 +40872,23 @@ enum ApplicationSowDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - IS_AMENDMENT_ASC - IS_AMENDMENT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationSowData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnalystLead` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationSowDataCondition { +input ApplicationAnalystLeadCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `analystId` field.""" + analystId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40391,108 +40907,317 @@ input ApplicationSowDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int - - """Checks for equality with the object’s `isAmendment` field.""" - isAmendment: Boolean } -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! +"""A connection to a list of `ApplicationAnnouncement` values.""" +type ApplicationAnnouncementsConnection { + """A list of `ApplicationAnnouncement` objects.""" + nodes: [ApplicationAnnouncement]! """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. """ - edges: [ProjectInformationDataEdge!]! + edges: [ApplicationAnnouncementsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ProjectInformationData` you could get from the connection. + The count of *all* `ApplicationAnnouncement` you could get from the connection. """ totalCount: Int! } -"""Table to store project information data""" -type ProjectInformationData implements Node { +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" + """The foreign key of a form""" + announcementId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean + + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String + + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""Table to hold the announcement data""" +type Announcement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the announcement data""" rowId: Int! - """The foreign key of an application""" - applicationId: Int + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String + + """ + The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByArchivedBy: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) - """ - jsonData: JSON! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created by user id""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """created at timestamp""" - createdAt: Datetime! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """updated by user id""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """updated at timestamp""" - updatedAt: Datetime! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ProjectInformationData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ProjectInformationData`.""" -enum ProjectInformationDataOrderBy { +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { NATURAL - ID_ASC - ID_DESC + ANNOUNCEMENT_ID_ASC + ANNOUNCEMENT_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -40505,24 +41230,25 @@ enum ProjectInformationDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + IS_PRIMARY_ASC + IS_PRIMARY_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnouncement` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationAnnouncementCondition { + """Checks for equality with the object’s `announcementId` field.""" + announcementId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40540,42 +41266,42 @@ input ProjectInformationDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `isPrimary` field.""" + isPrimary: Boolean + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ChangeRequestDataEdge!]! + edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ChangeRequestData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""Table to store change request data""" -type ChangeRequestData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The json form data of the change request form""" - jsonData: JSON! + """The `Application` at the end of the edge.""" + node: Application """created by user id""" createdBy: Int @@ -40594,297 +41320,287 @@ type ChangeRequestData implements Node { """archived at timestamp""" archivedAt: Datetime - amendmentNumber: Int + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean """ - Reads a single `Application` that is related to this `ChangeRequestData`. + Column describing the operation (created, updated, deleted) for context on the history page """ - applicationByApplicationId: Application - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByArchivedBy: CcbcUser + historyOperation: String } -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData -} + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! -"""Methods to use when ordering `ChangeRequestData`.""" -enum ChangeRequestDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `ChangeRequestData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -input ChangeRequestDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `ApplicationCommunityProgressReportData` values. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityProgressReportDataEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -Table containing the Community Progress Report data for the given application +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCommunityProgressReportData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the Community Progress Report""" - rowId: Int! +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ID of the application this Community Progress Report belongs to""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - The due date, date received and the file information of the Community Progress Report Excel file + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - jsonData: JSON! - - """created by user id""" - createdBy: Int + applicationAnnouncementsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" -enum ApplicationCommunityProgressReportDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A condition to be used against `ApplicationCommunityProgressReportData` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationCommunityProgressReportDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement +} - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String -} + """ + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + """ + edges: [ApplicationFormDataEdge!]! -""" -A connection to a list of `ApplicationCommunityReportExcelData` values. -""" -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationFormData` you could get from the connection. + """ + totalCount: Int! +} +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { """ - A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """The foreign key of a form""" + formDataId: Int! + + """The foreign key of an application""" + applicationId: Int! """ - The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + Reads a single `FormData` that is related to this `ApplicationFormData`. """ - totalCount: Int! + formDataByFormDataId: FormData + + """ + Reads a single `Application` that is related to this `ApplicationFormData`. + """ + applicationByApplicationId: Application } -""" -Table containing the Community Report excel data for the given application -""" -type ApplicationCommunityReportExcelData implements Node { +"""Table to hold applicant form data""" +type FormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the Community Report excel data""" + """The unique id of the form data""" rowId: Int! - """ID of the application this Community Report belongs to""" - applicationId: Int - - """The data imported from the excel filled by the respondent""" + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) + """ jsonData: JSON! + """Column saving the key of the last edited form page""" + lastEditedPage: String + + """Column referencing the form data status type, defaults to draft""" + formDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -40903,343 +41619,322 @@ type ApplicationCommunityReportExcelData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. - """ - applicationByApplicationId: Application + """Schema for the respective form_data""" + formSchemaId: Int + + """Column to track analysts reason for changing form data""" + reasonForChange: String """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + Reads a single `FormDataStatusType` that is related to this `FormData`. """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByArchivedBy: CcbcUser -} -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData -} + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( + """Only read the first `n` values of the set.""" + first: Int -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Only read the last `n` values of the set.""" + last: Int -""" -A condition to be used against `ApplicationCommunityReportExcelData` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """computed column to display whether form_data is editable or not""" + isEditable: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormDataFormDataIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. - """ - edges: [ApplicationClaimsDataEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `ApplicationClaimsData` you could get from the connection. - """ - totalCount: Int! + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! } -"""Table containing the claims data for the given application""" -type ApplicationClaimsData implements Node { +"""The statuses applicable to a form""" +type FormDataStatusType implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the claims""" - rowId: Int! - - """Id of the application the claims belongs to""" - applicationId: Int + """The name of the status type""" + name: String! - """The claims form json data""" - jsonData: JSON! + """The description of the status type""" + description: String - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""Methods to use when ordering `ApplicationClaimsData`.""" -enum ApplicationClaimsDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A condition to be used against `ApplicationClaimsData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationClaimsDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. - """ - edges: [ApplicationClaimsExcelDataEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `ApplicationClaimsExcelData` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""Table containing the claims excel data for the given application""" -type ApplicationClaimsExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Unique ID for the claims excel data""" - rowId: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - """ID of the application this data belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + A list of edges which contains the `FormData` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormDataEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationClaimsExcelData` edge in the connection.""" -type ApplicationClaimsExcelDataEdge { +"""A `FormData` edge in the connection.""" +type FormDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData + """The `FormData` at the end of the edge.""" + node: FormData } -"""Methods to use when ordering `ApplicationClaimsExcelData`.""" -enum ApplicationClaimsExcelDataOrderBy { +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC + LAST_EDITED_PAGE_ASC + LAST_EDITED_PAGE_DESC + FORM_DATA_STATUS_TYPE_ID_ASC + FORM_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -41252,24 +41947,31 @@ enum ApplicationClaimsExcelDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + FORM_SCHEMA_ID_ASC + FORM_SCHEMA_ID_DESC + REASON_FOR_CHANGE_ASC + REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationClaimsExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationClaimsExcelDataCondition { +input FormDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON + """Checks for equality with the object’s `lastEditedPage` field.""" + lastEditedPage: String + + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -41287,689 +41989,966 @@ input ApplicationClaimsExcelDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `formSchemaId` field.""" + formSchemaId: Int + + """Checks for equality with the object’s `reasonForChange` field.""" + reasonForChange: String } -"""A connection to a list of `ApplicationMilestoneData` values.""" -type ApplicationMilestoneDataConnection { - """A list of `ApplicationMilestoneData` objects.""" - nodes: [ApplicationMilestoneData]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneDataEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationMilestoneData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the milestone data for the given application""" -type ApplicationMilestoneData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the milestone""" - rowId: Int! - - """Id of the application the milestone belongs to""" - applicationId: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The milestone form json data""" - jsonData: JSON! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } """ -A condition to be used against `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -input ApplicationMilestoneDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneExcelDataEdge!]! + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""Table containing the milestone excel data for the given application""" -type ApplicationMilestoneExcelData implements Node { +"""Table to hold the json_schema for forms""" +type Form implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the milestone excel data""" + """Primary key on form""" rowId: Int! - """ID of the application this data belongs to""" - applicationId: Int + """The end url for the form data""" + slug: String - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """The JSON schema for the respective form""" + jsonSchema: JSON! - """created by user id""" - createdBy: Int + """Description of the form""" + description: String + + """The type of form being stored""" + formType: String + + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! +} + +"""Table containing the different types of forms used in the application""" +type FormType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier of the type of form""" + name: String! + + """Description of the type of form""" + description: String + + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormsConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. - """ - applicationByApplicationId: Application +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + A list of edges which contains the `Form` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormsEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { +"""A `Form` edge in the connection.""" +type FormsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData + """The `Form` at the end of the edge.""" + node: Form } -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + SLUG_ASC + SLUG_DESC + JSON_SCHEMA_ASC + JSON_SCHEMA_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FORM_TYPE_ASC + FORM_TYPE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationMilestoneExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataCondition { +input FormCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Checks for equality with the object’s `slug` field.""" + slug: String - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `description` field.""" + description: String - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `formType` field.""" + formType: String } -"""A connection to a list of `ApplicationInternalDescription` values.""" -type ApplicationInternalDescriptionsConnection { - """A list of `ApplicationInternalDescription` objects.""" - nodes: [ApplicationInternalDescription]! +""" +A connection to a list of `FormDataStatusType` values, with data from `FormData`. +""" +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationInternalDescription` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } -"""Table containing the internal description for the given application""" -type ApplicationInternalDescription implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """Id of the application the description belongs to""" - applicationId: Int - - """The internal description for the given application""" - description: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +""" +A `FormDataStatusType` edge in the connection, with data from `FormData`. +""" +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationInternalDescription` edge in the connection.""" -type ApplicationInternalDescriptionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + NAME_ASC + NAME_DESC DESCRIPTION_ASC DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String """Checks for equality with the object’s `description` field.""" description: String +} - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationProjectType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the application_project_type""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the application this application_project_type belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Column containing the project type of the application""" - projectType: String + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationProjectType`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} + +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Form` at the end of the edge.""" + node: Form + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { NATURAL - ID_ASC - ID_DESC + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationProjectType` object types. All fields +A condition to be used against `ApplicationFormData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `projectType` field.""" - projectType: String +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +"""A connection to a list of `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """ + The count of *all* `ApplicationRfiData` you could get from the connection. + """ totalCount: Int! } -"""Table containing list of application notifications""" -type Notification implements Node { +"""Table to pair an application to RFI data""" +type ApplicationRfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each notification""" - rowId: Int! - - """Type of the notification""" - notificationType: String - - """ID of the application this notification belongs to""" - applicationId: Int - - """Additional data for the notification""" - jsonData: JSON! - - """Column referencing the email record""" - emailRecordId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! + """The foreign key of a form""" + rfiDataId: Int! - """archived by user id""" - archivedBy: Int + """The foreign key of an application""" + applicationId: Int! - """archived at timestamp""" - archivedAt: Datetime + """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + rfiDataByRfiDataId: RfiData - """Reads a single `Application` that is related to this `Notification`.""" + """ + Reads a single `Application` that is related to this `ApplicationRfiData`. + """ applicationByApplicationId: Application - - """Reads a single `EmailRecord` that is related to this `Notification`.""" - emailRecordByEmailRecordId: EmailRecord - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByArchivedBy: CcbcUser } -"""Table containing list of application email_records""" -type EmailRecord implements Node { +"""Table to hold RFI form data""" +type RfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each email sent""" + """The unique id of the form data""" rowId: Int! - """Email Address(es) of the recipients""" - toEmail: String - - """Email Address(es) of the CC recipients""" - ccEmail: String - - """Subject of the email""" - subject: String - - """Body of the email""" - body: String - - """Message ID of the email returned by the email server""" - messageId: String + """Reference number assigned to the RFI""" + rfiNumber: String - """Additional data for the email""" + """ + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + """ jsonData: JSON! + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -41988,17 +42967,20 @@ type EmailRecord implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( """Only read the first `n` values of the set.""" first: Int @@ -42017,22 +42999,48 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationRfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! + + """Computed column to return all attachement rows for an rfi_data row""" + attachments( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -42063,10 +43071,58 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! +} + +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The name of the status type""" + name: String! + + """The description of the status type""" + description: String + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42097,10 +43153,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42131,10 +43187,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42165,22 +43221,46 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Notification`.""" -enum NotificationsOrderBy { +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData` and cursor to aid in pagination. + """ + edges: [RfiDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +"""A `RfiData` edge in the connection.""" +type RfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +"""Methods to use when ordering `RfiData`.""" +enum RfiDataOrderBy { NATURAL ID_ASC ID_DESC - NOTIFICATION_TYPE_ASC - NOTIFICATION_TYPE_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + RFI_NUMBER_ASC + RFI_NUMBER_DESC JSON_DATA_ASC JSON_DATA_DESC - EMAIL_RECORD_ID_ASC - EMAIL_RECORD_ID_DESC + RFI_DATA_STATUS_TYPE_ID_ASC + RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -42198,24 +43278,20 @@ enum NotificationsOrderBy { } """ -A condition to be used against `Notification` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input NotificationCondition { +input RfiDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `notificationType` field.""" - notificationType: String - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `emailRecordId` field.""" - emailRecordId: Int + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -42236,35 +43312,33 @@ input NotificationCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42283,32 +43357,30 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42317,16 +43389,16 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42345,32 +43417,30 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42379,16 +43449,16 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42407,133 +43477,117 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} + +"""Methods to use when ordering `ApplicationRfiData`.""" +enum ApplicationRfiDataOrderBy { + NATURAL + RFI_DATA_ID_ASC + RFI_DATA_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A condition to be used against `ApplicationRfiData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +input ApplicationRfiDataCondition { + """Checks for equality with the object’s `rfiDataId` field.""" + rfiDataId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int +} + +""" +A connection to a list of `Application` values, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition +""" +A `Application` edge in the connection, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """The `Application` at the end of the edge.""" + node: Application } -"""A `Notification` edge in the connection.""" -type NotificationsEdge { +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Notification` at the end of the edge.""" - node: Notification + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData } -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! +"""A connection to a list of `ApplicationAnnounced` values.""" +type ApplicationAnnouncedsConnection { + """A list of `ApplicationAnnounced` objects.""" + nodes: [ApplicationAnnounced]! """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + A list of edges which contains the `ApplicationAnnounced` and cursor to aid in pagination. """ - edges: [ApplicationPendingChangeRequestsEdge!]! + edges: [ApplicationAnnouncedsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + The count of *all* `ApplicationAnnounced` you could get from the connection. """ totalCount: Int! } -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { +"""Table containing if the application has been announced by BC or ISED""" +type ApplicationAnnounced implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_pending_change_request""" + """Unique ID for the application_announced""" rowId: Int! - """ - ID of the application this application_pending_change_request belongs to - """ + """ID of the application this record belongs to""" applicationId: Int - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String + """Whether the application has been announced by BC or ISED""" + announced: Boolean """created by user id""" createdBy: Int @@ -42554,46 +43608,44 @@ type ApplicationPendingChangeRequest implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + Reads a single `Application` that is related to this `ApplicationAnnounced`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { +"""A `ApplicationAnnounced` edge in the connection.""" +type ApplicationAnnouncedsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest + """The `ApplicationAnnounced` at the end of the edge.""" + node: ApplicationAnnounced } -"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" -enum ApplicationPendingChangeRequestsOrderBy { +"""Methods to use when ordering `ApplicationAnnounced`.""" +enum ApplicationAnnouncedsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC + ANNOUNCED_ASC + ANNOUNCED_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -42611,21 +43663,18 @@ enum ApplicationPendingChangeRequestsOrderBy { } """ -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnounced` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPendingChangeRequestCondition { +input ApplicationAnnouncedCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String + """Checks for equality with the object’s `announced` field.""" + announced: Boolean """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -42646,40 +43695,43 @@ input ApplicationPendingChangeRequestCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationAnnounced` values.""" -type ApplicationAnnouncedsConnection { - """A list of `ApplicationAnnounced` objects.""" - nodes: [ApplicationAnnounced]! +"""A connection to a list of `ApplicationFormTemplate9Data` values.""" +type ApplicationFormTemplate9DataConnection { + """A list of `ApplicationFormTemplate9Data` objects.""" + nodes: [ApplicationFormTemplate9Data]! """ - A list of edges which contains the `ApplicationAnnounced` and cursor to aid in pagination. + A list of edges which contains the `ApplicationFormTemplate9Data` and cursor to aid in pagination. """ - edges: [ApplicationAnnouncedsEdge!]! + edges: [ApplicationFormTemplate9DataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnnounced` you could get from the connection. + The count of *all* `ApplicationFormTemplate9Data` you could get from the connection. """ totalCount: Int! } -"""Table containing if the application has been announced by BC or ISED""" -type ApplicationAnnounced implements Node { +"""Table containing the Template 9 Data as submitted by the applicant""" +type ApplicationFormTemplate9Data implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_announced""" + """Unique ID for the Template 9 Data""" rowId: Int! - """ID of the application this record belongs to""" + """ID of the application this Template 9 Data belongs to""" applicationId: Int - """Whether the application has been announced by BC or ISED""" - announced: Boolean + """The data imported from the Excel filled by the applicant""" + jsonData: JSON! + + """Errors related to Template 9 for that application id""" + errors: JSON """created by user id""" createdBy: Int @@ -42700,44 +43752,46 @@ type ApplicationAnnounced implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationAnnounced`. + Reads a single `Application` that is related to this `ApplicationFormTemplate9Data`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnnounced` edge in the connection.""" -type ApplicationAnnouncedsEdge { +"""A `ApplicationFormTemplate9Data` edge in the connection.""" +type ApplicationFormTemplate9DataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnnounced` at the end of the edge.""" - node: ApplicationAnnounced + """The `ApplicationFormTemplate9Data` at the end of the edge.""" + node: ApplicationFormTemplate9Data } -"""Methods to use when ordering `ApplicationAnnounced`.""" -enum ApplicationAnnouncedsOrderBy { +"""Methods to use when ordering `ApplicationFormTemplate9Data`.""" +enum ApplicationFormTemplate9DataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ANNOUNCED_ASC - ANNOUNCED_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ERRORS_ASC + ERRORS_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -42755,18 +43809,21 @@ enum ApplicationAnnouncedsOrderBy { } """ -A condition to be used against `ApplicationAnnounced` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationFormTemplate9Data` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnnouncedCondition { +input ApplicationFormTemplate9DataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `announced` field.""" - announced: Boolean + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `errors` field.""" + errors: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -42935,38 +43992,36 @@ input HistoryItemFilter { } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -42985,70 +44040,55 @@ type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""Methods to use when ordering `ApplicationStatusType`.""" -enum ApplicationStatusTypesOrderBy { +"""Methods to use when ordering `AssessmentType`.""" +enum AssessmentTypesOrderBy { NATURAL NAME_ASC NAME_DESC DESCRIPTION_ASC DESCRIPTION_DESC - VISIBLE_BY_APPLICANT_ASC - VISIBLE_BY_APPLICANT_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - VISIBLE_BY_ANALYST_ASC - VISIBLE_BY_ANALYST_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationStatusType` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `AssessmentType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationStatusTypeCondition { +input AssessmentTypeCondition { """Checks for equality with the object’s `name` field.""" name: String """Checks for equality with the object’s `description` field.""" description: String - - """Checks for equality with the object’s `visibleByApplicant` field.""" - visibleByApplicant: Boolean - - """Checks for equality with the object’s `statusOrder` field.""" - statusOrder: Int - - """Checks for equality with the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: Boolean } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43057,18 +44097,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43087,32 +44125,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43121,18 +44159,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43151,32 +44187,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43185,84 +44221,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! - - """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ - totalCount: Int! -} - -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43281,32 +44249,32 @@ type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatus """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43315,78 +44283,20 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} - """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43405,32 +44315,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43439,16 +44349,20 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43467,84 +44381,54 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! -} - -""" -A connection to a list of `FormData` values, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! - - """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `FormData` edge in the connection, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormData` at the end of the edge.""" - node: FormData + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationAnalystLeadsByAnalystId( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43563,99 +44447,32 @@ type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! -} - -"""Methods to use when ordering `Analyst`.""" -enum AnalystsOrderBy { - NATURAL - ID_ASC - ID_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ACTIVE_ASC - ACTIVE_DESC - EMAIL_ASC - EMAIL_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input AnalystCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `givenName` field.""" - givenName: String - - """Checks for equality with the object’s `familyName` field.""" - familyName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `active` field.""" - active: Boolean - - """Checks for equality with the object’s `email` field.""" - email: String + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43665,9 +44482,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43675,9 +44492,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnalystLeadsByCreatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43696,32 +44513,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43731,9 +44548,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43741,9 +44558,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnalystLeadsByUpdatedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43762,32 +44579,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43797,9 +44614,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43807,9 +44624,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnalystLeadsByArchivedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43828,82 +44645,168 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RfiData` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `GisData` at the end of the edge.""" + node: GisData + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} + +"""Methods to use when ordering `GisData`.""" +enum GisDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +input GisDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43922,55 +44825,32 @@ type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTyp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""Methods to use when ordering `AssessmentType`.""" -enum AssessmentTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `AssessmentType` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String - - """Checks for equality with the object’s `description` field.""" - description: String + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43979,16 +44859,18 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConn totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44007,32 +44889,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44041,16 +44923,18 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConn totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44069,32 +44953,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44103,16 +44987,20 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyCon totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44131,32 +45019,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44166,17 +45054,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44195,32 +45085,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44230,17 +45120,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44259,32 +45151,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44294,17 +45186,17 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44323,32 +45215,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44358,19 +45250,17 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44389,32 +45279,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44424,19 +45314,17 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44455,32 +45343,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44490,9 +45378,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44500,9 +45388,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44521,52 +45409,54 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44585,84 +45475,32 @@ type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""Methods to use when ordering `GisData`.""" -enum GisDataOrderBy { - NATURAL - ID_ASC - ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input GisDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44672,17 +45510,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44701,32 +45541,32 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44736,17 +45576,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44765,32 +45607,34 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44800,17 +45644,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44829,146 +45675,102 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - historyOperation: String -} - -"""Methods to use when ordering `Announcement`.""" -enum AnnouncementsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBERS_ASC - CCBC_NUMBERS_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Announcement` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AnnouncementCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `ccbcNumbers` field.""" - ccbcNumbers: String + applicationCommunityProgressReportDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44978,9 +45780,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44988,9 +45790,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationAnnouncementsByCreatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45009,32 +45811,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45044,9 +45846,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45054,9 +45856,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationAnnouncementsByUpdatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45075,32 +45877,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45110,9 +45912,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45120,9 +45922,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationAnnouncementsByArchivedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45141,32 +45943,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45176,9 +45978,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45186,9 +45988,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45207,32 +46009,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45242,9 +46044,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45252,9 +46054,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45273,32 +46075,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45308,9 +46110,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45318,9 +46120,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45339,32 +46141,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45374,17 +46176,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45403,32 +46207,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45438,17 +46242,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45467,32 +46273,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45502,17 +46308,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45531,32 +46339,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45566,9 +46374,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45576,9 +46384,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - projectInformationDataByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45597,32 +46405,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45632,9 +46440,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45642,9 +46450,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - projectInformationDataByUpdatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45663,32 +46471,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45698,9 +46506,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45708,9 +46516,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - projectInformationDataByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45729,32 +46537,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45764,17 +46572,17 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45793,32 +46601,32 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45828,17 +46636,17 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45857,32 +46665,32 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45892,17 +46700,17 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45921,32 +46729,32 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45956,19 +46764,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45987,34 +46793,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46024,19 +46828,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46055,34 +46857,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46092,19 +46892,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46123,56 +46921,50 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -46191,32 +46983,110 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! +} + +"""Methods to use when ordering `EmailRecord`.""" +enum EmailRecordsOrderBy { + NATURAL + ID_ASC + ID_DESC + TO_EMAIL_ASC + TO_EMAIL_DESC + CC_EMAIL_ASC + CC_EMAIL_DESC + SUBJECT_ASC + SUBJECT_DESC + BODY_ASC + BODY_DESC + MESSAGE_ID_ASC + MESSAGE_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { +input EmailRecordCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `toEmail` field.""" + toEmail: String + + """Checks for equality with the object’s `ccEmail` field.""" + ccEmail: String + + """Checks for equality with the object’s `subject` field.""" + subject: String + + """Checks for equality with the object’s `body` field.""" + body: String + + """Checks for equality with the object’s `messageId` field.""" + messageId: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46225,20 +47095,16 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46257,54 +47123,50 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46323,32 +47185,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46357,18 +47219,16 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46387,32 +47247,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46422,17 +47282,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46451,32 +47311,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46486,17 +47346,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46515,32 +47375,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46550,19 +47410,17 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46581,32 +47439,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46616,9 +47474,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46626,9 +47484,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46647,32 +47505,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46682,9 +47540,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46692,9 +47550,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationClaimsExcelDataByArchivedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46713,32 +47571,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46748,9 +47606,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46758,9 +47616,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationMilestoneDataByCreatedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46779,32 +47637,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46814,9 +47672,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46824,9 +47682,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneDataByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46845,32 +47703,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46880,9 +47738,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46890,9 +47748,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneDataByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46911,32 +47769,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46946,9 +47804,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46956,9 +47814,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46977,54 +47835,54 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -47043,32 +47901,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47077,20 +47935,16 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47109,32 +47963,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47143,20 +47997,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47175,32 +48025,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47209,20 +48059,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47241,54 +48087,54 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -47307,32 +48153,99 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! +} + +"""Methods to use when ordering `Analyst`.""" +enum AnalystsOrderBy { + NATURAL + ID_ASC + ID_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + ACTIVE_ASC + ACTIVE_DESC + EMAIL_ASC + EMAIL_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input AnalystCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `givenName` field.""" + givenName: String + + """Checks for equality with the object’s `familyName` field.""" + familyName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Checks for equality with the object’s `active` field.""" + active: Boolean + + """Checks for equality with the object’s `email` field.""" + email: String } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47342,9 +48255,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47352,9 +48265,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationProjectTypesByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47373,32 +48286,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47408,9 +48321,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47418,9 +48331,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationProjectTypesByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47439,32 +48352,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47474,9 +48387,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47484,9 +48397,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationProjectTypesByArchivedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47505,98 +48418,84 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String } -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { +"""Methods to use when ordering `Announcement`.""" +enum AnnouncementsOrderBy { NATURAL ID_ASC ID_DESC - TO_EMAIL_ASC - TO_EMAIL_DESC - CC_EMAIL_ASC - CC_EMAIL_DESC - SUBJECT_ASC - SUBJECT_DESC - BODY_ASC - BODY_DESC - MESSAGE_ID_ASC - MESSAGE_ID_DESC + CCBC_NUMBERS_ASC + CCBC_NUMBERS_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -47616,27 +48515,15 @@ enum EmailRecordsOrderBy { } """ -A condition to be used against `EmailRecord` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input EmailRecordCondition { +input AnnouncementCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `toEmail` field.""" - toEmail: String - - """Checks for equality with the object’s `ccEmail` field.""" - ccEmail: String - - """Checks for equality with the object’s `subject` field.""" - subject: String - - """Checks for equality with the object’s `body` field.""" - body: String - - """Checks for equality with the object’s `messageId` field.""" - messageId: String + """Checks for equality with the object’s `ccbcNumbers` field.""" + ccbcNumbers: String """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -47661,16 +48548,16 @@ input EmailRecordCondition { } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47679,16 +48566,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47707,32 +48598,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47741,16 +48632,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47769,32 +48664,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47803,16 +48698,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47831,32 +48730,196 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `FormData` values, with data from `ApplicationFormData`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! + + """ + A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `FormData` edge in the connection, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `FormData` at the end of the edge.""" + node: FormData +} + +""" +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! + + """ + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + VISIBLE_BY_APPLICANT_ASC + VISIBLE_BY_APPLICANT_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + VISIBLE_BY_ANALYST_ASC + VISIBLE_BY_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean + + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int + + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47866,19 +48929,17 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47897,32 +48958,32 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47932,19 +48993,17 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47963,32 +49022,32 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47998,19 +49057,17 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48029,19 +49086,19 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ @@ -48236,26 +49293,17 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToM ): ApplicationAnnouncedsConnection! } -"""A `Application` edge in the connection.""" -type ApplicationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application -} - """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48264,16 +49312,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48292,32 +49344,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48326,16 +49378,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48354,32 +49410,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48388,16 +49444,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48416,238 +49476,71 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } -"""A `Intake` edge in the connection.""" -type IntakesEdge { +"""A `Application` edge in the connection.""" +type ApplicationsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `Application` at the end of the edge.""" + node: Application } -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! +"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" +type CbcApplicationPendingChangeRequestsConnection { + """A list of `CbcApplicationPendingChangeRequest` objects.""" + nodes: [CbcApplicationPendingChangeRequest]! """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. + A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [RecordVersionsEdge!]! + edges: [CbcApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RecordVersion` you could get from the connection.""" + """ + The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. + """ totalCount: Int! } -""" -Table for tracking history records on tables that auditing is enabled on -""" -type RecordVersion implements Node { +"""Table containing the pending change request details of the application""" +type CbcApplicationPendingChangeRequest implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier""" - rowId: BigInt! - - """The id of the record the history record is associated with""" - recordId: UUID - - """ - The id of the previous version of the record the history record is associated with - """ - oldRecordId: UUID - - """The operation performed on the record (created, updated, deleted)""" - op: Operation! - - """The timestamp of the history record""" - ts: Datetime! - - """The oid of the table the record is associated with""" - tableOid: BigFloat! - - """The schema of the table the record is associated with""" - tableSchema: String! - - """The name of the table the record is associated with""" - tableName: String! - - """The user that created the record""" - createdBy: Int - - """The timestamp of when the record was created""" - createdAt: Datetime! - - """The record in JSON format""" - record: JSON - - """The previous version of the record in JSON format""" - oldRecord: JSON - - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} - -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion -} - -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { - NATURAL - ID_ASC - ID_DESC - RECORD_ID_ASC - RECORD_ID_DESC - OLD_RECORD_ID_ASC - OLD_RECORD_ID_DESC - OP_ASC - OP_DESC - TS_ASC - TS_DESC - TABLE_OID_ASC - TABLE_OID_DESC - TABLE_SCHEMA_ASC - TABLE_SCHEMA_DESC - TABLE_NAME_ASC - TABLE_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - RECORD_ASC - RECORD_DESC - OLD_RECORD_ASC - OLD_RECORD_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt - - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID - - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID - - """Checks for equality with the object’s `op` field.""" - op: Operation - - """Checks for equality with the object’s `ts` field.""" - ts: Datetime - - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat - - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String - - """Checks for equality with the object’s `tableName` field.""" - tableName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `record` field.""" - record: JSON - - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `GisData` and cursor to aid in pagination. - """ - edges: [GisDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `GisData` you could get from the connection.""" - totalCount: Int! -} - -"""A `GisData` edge in the connection.""" -type GisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `GisData` at the end of the edge.""" - node: GisData -} - -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! + """Unique ID for the cbc_application_pending_change_request""" + rowId: Int! """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. + ID of the cbc application this cbc_application_pending_change_request belongs to """ - edges: [CbcProjectsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! + cbcId: Int - """The count of *all* `CbcProject` you could get from the connection.""" - totalCount: Int! -} + """Column defining if the change request pending or not""" + isPending: Boolean -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Column containing the comment for the change request or completion of the change request """ - id: ID! - - """Unique ID for the row""" - rowId: Int! - - """The data imported from the excel for that cbc project""" - jsonData: JSON! - - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime + comment: String """created by user id""" createdBy: Int @@ -48667,124 +49560,25 @@ type CbcProject implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcProject` edge in the connection.""" -type CbcProjectsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcProject` at the end of the edge.""" - node: CbcProject -} - -"""Methods to use when ordering `CbcProject`.""" -enum CbcProjectsOrderBy { - NATURAL - ID_ASC - ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcProject` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CbcProjectCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - -"""A connection to a list of `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! - """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. + Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. """ - edges: [EmailRecordsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} - -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord -} - -"""A connection to a list of `Cbc` values.""" -type CbcsConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! + cbcByCbcId: Cbc """ - A list of edges which contains the `Cbc` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. """ - edges: [CbcsEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `Cbc` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser } """ @@ -48832,8 +49626,10 @@ type Cbc implements Node { """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48852,22 +49648,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48900,10 +49696,8 @@ type Cbc implements Node { filter: CbcDataFilter ): CbcDataConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -48922,19 +49716,19 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CbcProjectCommunity`.""" cbcProjectCommunitiesByCbcId( @@ -48996,42 +49790,8 @@ type Cbc implements Node { filter: RecordVersionFilter ): RecordVersionsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCbcIdAndProjectNumber( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49062,10 +49822,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49096,10 +49856,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49130,10 +49890,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataProjectNumberAndCbcId( + cbcsByCbcDataCbcIdAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -49164,10 +49924,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndCreatedBy( + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49198,10 +49958,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49232,10 +49992,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndArchivedBy( + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49266,10 +50026,44 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( + ccbcUsersByCbcDataProjectNumberAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49300,10 +50094,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49334,10 +50128,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( + ccbcUsersByCbcDataProjectNumberAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49368,7 +50162,7 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" communitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataId( @@ -49507,6 +50301,69 @@ type Cbc implements Node { ): CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection! } +"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" +enum CbcApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcApplicationPendingChangeRequest` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `CbcData` values.""" type CbcDataConnection { """A list of `CbcData` objects.""" @@ -50127,159 +50984,6 @@ input CbcDataCondition { changeReason: String } -"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" -type CbcApplicationPendingChangeRequestsConnection { - """A list of `CbcApplicationPendingChangeRequest` objects.""" - nodes: [CbcApplicationPendingChangeRequest]! - - """ - A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [CbcApplicationPendingChangeRequestsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the pending change request details of the application""" -type CbcApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the cbc_application_pending_change_request""" - rowId: Int! - - """ - ID of the cbc application this cbc_application_pending_change_request belongs to - """ - cbcId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. - """ - cbcByCbcId: Cbc - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" -type CbcApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" - node: CbcApplicationPendingChangeRequest -} - -"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" -enum CbcApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - CBC_ID_ASC - CBC_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcApplicationPendingChangeRequest` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `cbcId` field.""" - cbcId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `CbcProjectCommunity` values.""" type CbcProjectCommunitiesConnection { """A list of `CbcProjectCommunity` objects.""" @@ -50975,33 +51679,116 @@ type CbcProjectCommunitiesEdge { node: CbcProjectCommunity } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. """ - edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! + edges: [RecordVersionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `RecordVersion` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { +""" +Table for tracking history records on tables that auditing is enabled on +""" +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier""" + rowId: BigInt! + + """The id of the record the history record is associated with""" + recordId: UUID + + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID + + """The operation performed on the record (created, updated, deleted)""" + op: Operation! + + """The timestamp of the history record""" + ts: Datetime! + + """The oid of the table the record is associated with""" + tableOid: BigFloat! + + """The schema of the table the record is associated with""" + tableSchema: String! + + """The name of the table the record is associated with""" + tableName: String! + + """The user that created the record""" + createdBy: Int + + """The timestamp of when the record was created""" + createdAt: Datetime! + + """The record in JSON format""" + record: JSON + + """The previous version of the record in JSON format""" + oldRecord: JSON + + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser +} + +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51020,30 +51807,32 @@ type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51052,16 +51841,20 @@ type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51080,30 +51873,32 @@ type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51112,16 +51907,20 @@ type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51140,48 +51939,48 @@ type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! + edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -51215,33 +52014,33 @@ type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51276,14 +52075,14 @@ type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51293,7 +52092,7 @@ type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51301,7 +52100,7 @@ type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51336,14 +52135,14 @@ type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51353,7 +52152,7 @@ type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51361,7 +52160,7 @@ type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51395,33 +52194,33 @@ type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! + edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -51455,17 +52254,15 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51474,20 +52271,16 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51506,54 +52299,48 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { +} + +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51572,32 +52359,30 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51606,20 +52391,16 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51638,19 +52419,19 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ @@ -51999,6 +52780,212 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { ): CbcProjectCommunitiesConnection! } +"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" +type CbcApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" + node: CbcApplicationPendingChangeRequest +} + +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! + + """ + A list of edges which contains the `CbcProject` and cursor to aid in pagination. + """ + edges: [CbcProjectsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CbcProject` you could get from the connection.""" + totalCount: Int! +} + +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the row""" + rowId: Int! + + """The data imported from the excel for that cbc project""" + jsonData: JSON! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcProject` edge in the connection.""" +type CbcProjectsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcProject` at the end of the edge.""" + node: CbcProject +} + +"""Methods to use when ordering `CbcProject`.""" +enum CbcProjectsOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcProject` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CbcProjectCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. + """ + edges: [CcbcUsersEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser +} + +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! + + """ + A list of edges which contains the `GisData` and cursor to aid in pagination. + """ + edges: [GisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! +} + +"""A `GisData` edge in the connection.""" +type GisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `GisData` at the end of the edge.""" + node: GisData +} + +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc` and cursor to aid in pagination. + """ + edges: [CbcsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + """A `Cbc` edge in the connection.""" type CbcsEdge { """A cursor for use in pagination.""" @@ -52008,6 +52995,105 @@ type CbcsEdge { node: Cbc } +"""A connection to a list of `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! + + """ + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. + """ + edges: [EmailRecordsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! +} + +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord +} + +"""Methods to use when ordering `RecordVersion`.""" +enum RecordVersionsOrderBy { + NATURAL + ID_ASC + ID_DESC + RECORD_ID_ASC + RECORD_ID_DESC + OLD_RECORD_ID_ASC + OLD_RECORD_ID_DESC + OP_ASC + OP_DESC + TS_ASC + TS_DESC + TABLE_OID_ASC + TABLE_OID_DESC + TABLE_SCHEMA_ASC + TABLE_SCHEMA_DESC + TABLE_NAME_ASC + TABLE_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + RECORD_ASC + RECORD_DESC + OLD_RECORD_ASC + OLD_RECORD_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt + + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID + + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID + + """Checks for equality with the object’s `op` field.""" + op: Operation + + """Checks for equality with the object’s `ts` field.""" + ts: Datetime + + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat + + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String + + """Checks for equality with the object’s `tableName` field.""" + tableName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `record` field.""" + record: JSON + + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON +} + """A connection to a list of `CommunitiesSourceData` values.""" type CommunitiesSourceDataConnection { """A list of `CommunitiesSourceData` objects.""" @@ -52159,96 +53245,34 @@ input ReportingGcpeCondition { } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUsersConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52267,32 +53291,32 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52301,16 +53325,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52329,32 +53353,32 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52363,16 +53387,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52391,50 +53415,50 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52453,32 +53477,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52487,16 +53511,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52515,30 +53539,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52547,16 +53573,16 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52575,48 +53601,50 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Intake` values, with data from `Application`. +""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52635,50 +53663,50 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52697,53 +53725,32 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `Application`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52752,16 +53759,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52780,48 +53787,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52840,50 +53851,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -52902,30 +53915,32 @@ type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52934,16 +53949,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52962,30 +53977,32 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52994,16 +54011,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53022,50 +54039,52 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53084,50 +54103,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -53146,32 +54167,32 @@ type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53180,16 +54201,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53208,32 +54229,32 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53242,16 +54263,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53270,50 +54291,52 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53332,50 +54355,52 @@ type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -53394,32 +54419,32 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53428,16 +54453,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53456,50 +54481,50 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53518,32 +54543,32 @@ type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53552,16 +54577,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53580,32 +54605,32 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53614,16 +54639,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53642,52 +54667,50 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53706,54 +54729,50 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53772,32 +54791,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53806,18 +54825,16 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53836,32 +54853,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53870,18 +54887,16 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53900,32 +54915,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53935,17 +54950,19 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53964,54 +54981,54 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54030,32 +55047,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54065,17 +55082,19 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54094,52 +55113,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54158,52 +55179,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54222,54 +55245,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54288,52 +55311,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54352,32 +55377,32 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54387,17 +55412,19 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54416,50 +55443,54 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54478,54 +55509,54 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -54544,32 +55575,32 @@ type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54578,16 +55609,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54606,32 +55637,32 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54640,16 +55671,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54668,50 +55699,48 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -54730,54 +55759,54 @@ type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -54796,32 +55825,32 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54830,16 +55859,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54858,32 +55887,32 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54892,16 +55921,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54920,50 +55949,48 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -54982,54 +56009,54 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -55048,32 +56075,32 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55082,16 +56109,16 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55110,32 +56137,32 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55144,16 +56171,16 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55172,54 +56199,114 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `FormDataStatusType` values, with data from `FormData`. -""" -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! +} + +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Form` at the end of the edge.""" + node: Form + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + """ - The count of *all* `FormDataStatusType` you could get from the connection. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55238,32 +56325,32 @@ type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55272,16 +56359,20 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55300,32 +56391,32 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55334,16 +56425,20 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55362,48 +56457,54 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55422,54 +56523,54 @@ type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55488,32 +56589,32 @@ type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55522,16 +56623,20 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55550,50 +56655,54 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55612,48 +56721,54 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55672,54 +56787,54 @@ type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55738,50 +56853,52 @@ type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -55800,50 +56917,52 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55862,48 +56981,52 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55922,30 +57045,32 @@ type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55954,16 +57079,18 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55982,48 +57109,52 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -56042,48 +57173,52 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56102,30 +57237,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56134,16 +57271,18 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56162,30 +57301,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56194,16 +57335,18 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56222,48 +57365,52 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -56282,32 +57429,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56317,19 +57464,17 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56348,54 +57493,52 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56414,32 +57557,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56449,19 +57592,17 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56480,54 +57621,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56546,54 +57687,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByApplicationId( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56612,54 +57753,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByAnalystId( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56678,54 +57819,54 @@ type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56744,32 +57885,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56779,9 +57920,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56789,9 +57930,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56810,54 +57951,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByApplicationId( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56876,54 +58017,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByAnalystId( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56942,32 +58083,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56977,9 +58118,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56987,9 +58128,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57008,32 +58149,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57043,9 +58184,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57053,9 +58194,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByUpdatedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57074,19 +58215,19 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ @@ -57670,37 +58811,33 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { ): RfiDataConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57719,52 +58856,48 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57783,50 +58916,50 @@ type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -57845,32 +58978,53 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! +} + +"""Methods to use when ordering `GaplessCounter`.""" +enum GaplessCountersOrderBy { + NATURAL + ID_ASC + ID_DESC + COUNTER_ASC + COUNTER_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A condition to be used against `GaplessCounter` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { +input GaplessCounterCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `counter` field.""" + counter: Int +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57879,16 +59033,16 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57907,52 +59061,48 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57971,52 +59121,50 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -58035,32 +59183,30 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58069,16 +59215,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58097,32 +59243,30 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58131,16 +59275,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58159,52 +59303,50 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -58223,52 +59365,52 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58287,32 +59429,32 @@ type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58321,16 +59463,18 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58349,32 +59493,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58383,16 +59527,18 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58411,32 +59557,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58446,17 +59592,17 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58475,32 +59621,32 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58510,17 +59656,17 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58539,32 +59685,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58574,17 +59720,17 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58603,32 +59749,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58638,17 +59784,17 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58667,32 +59813,32 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58702,17 +59848,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58731,32 +59877,32 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58766,17 +59912,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58795,32 +59941,32 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58830,17 +59976,19 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58859,32 +60007,32 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58894,17 +60042,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58923,32 +60073,32 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58958,17 +60108,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58987,32 +60139,32 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59022,9 +60174,9 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59032,9 +60184,9 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59053,32 +60205,32 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59088,9 +60240,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59098,9 +60250,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByUpdatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59119,32 +60271,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59154,9 +60306,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59164,9 +60316,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59185,32 +60337,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59220,9 +60372,9 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59230,9 +60382,9 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59251,32 +60403,32 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59286,9 +60438,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59296,9 +60448,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59317,32 +60469,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59352,9 +60504,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59362,9 +60514,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59383,32 +60535,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59418,9 +60570,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59428,9 +60580,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59449,32 +60601,34 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59484,9 +60638,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59494,9 +60648,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByCreatedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59515,32 +60669,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59550,9 +60706,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59560,9 +60716,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByUpdatedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59581,48 +60737,56 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59641,30 +60805,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59673,16 +60841,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59701,30 +60873,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59733,16 +60909,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59761,48 +60941,56 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59821,30 +61009,34 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59853,16 +61045,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59881,30 +61077,34 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59913,16 +61113,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59941,52 +61145,56 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60005,52 +61213,54 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60069,32 +61279,32 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60104,17 +61314,19 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60133,52 +61345,54 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60197,52 +61411,54 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60261,52 +61477,54 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60325,52 +61543,54 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60389,32 +61609,32 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60424,17 +61644,19 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60453,52 +61675,54 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60517,32 +61741,32 @@ type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60552,17 +61776,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60581,32 +61807,32 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60616,17 +61842,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60645,32 +61873,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60680,17 +61908,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60709,50 +61939,54 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60771,32 +62005,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60805,16 +62039,20 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60833,32 +62071,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60867,16 +62105,20 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60895,50 +62137,54 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60957,32 +62203,32 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60991,16 +62237,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61019,32 +62269,32 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61053,16 +62303,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61081,54 +62335,54 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61147,54 +62401,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61213,32 +62467,32 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61248,9 +62502,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61258,9 +62512,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61279,54 +62533,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61345,54 +62599,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61411,54 +62665,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61477,54 +62731,54 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61543,32 +62797,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61578,9 +62832,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61588,9 +62842,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61609,54 +62863,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61675,32 +62929,32 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61710,9 +62964,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61720,9 +62974,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61741,32 +62995,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61776,9 +63030,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61786,9 +63040,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61807,32 +63061,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61842,9 +63096,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61852,9 +63106,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61873,32 +63127,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61908,9 +63162,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61918,9 +63172,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61939,32 +63193,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61974,9 +63228,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61984,9 +63238,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62005,32 +63259,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62040,9 +63294,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62050,9 +63304,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62071,32 +63325,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62106,9 +63360,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62116,9 +63370,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62137,32 +63391,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62172,9 +63426,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62182,9 +63436,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62203,32 +63457,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62238,9 +63492,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62248,9 +63502,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62269,32 +63523,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62304,19 +63558,17 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62335,32 +63587,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62370,19 +63622,17 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62401,32 +63651,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62436,19 +63686,17 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62467,32 +63715,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62504,7 +63752,7 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62549,14 +63797,14 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62568,7 +63816,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62576,7 +63824,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62613,14 +63861,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62632,7 +63880,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62677,14 +63925,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62696,7 +63944,7 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62741,14 +63989,14 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62760,7 +64008,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62805,14 +64053,14 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62824,7 +64072,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62832,7 +64080,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62867,36 +64115,38 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -62915,32 +64165,32 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62950,17 +64200,19 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62979,32 +64231,32 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63014,17 +64266,19 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63043,54 +64297,54 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63109,30 +64363,32 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63141,16 +64397,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63169,30 +64429,32 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63201,16 +64463,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63229,54 +64495,54 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63295,30 +64561,32 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63327,16 +64595,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63355,30 +64627,32 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63387,16 +64661,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63415,54 +64693,50 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63481,30 +64755,32 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63513,16 +64789,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63541,30 +64817,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63573,16 +64851,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63601,54 +64879,50 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63667,30 +64941,32 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63699,16 +64975,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63727,30 +65003,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63759,16 +65037,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63787,54 +65065,52 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63853,30 +65129,32 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63885,16 +65163,18 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63913,30 +65193,32 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63945,16 +65227,18 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63973,54 +65257,52 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64039,30 +65321,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64071,16 +65355,18 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64099,30 +65385,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64131,16 +65419,18 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64159,32 +65449,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64194,19 +65484,17 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64225,32 +65513,32 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64260,19 +65548,17 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64291,32 +65577,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64326,19 +65612,17 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64357,32 +65641,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64391,20 +65675,16 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64423,54 +65703,50 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -64489,32 +65765,32 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64523,20 +65799,16 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64555,54 +65827,50 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64621,54 +65889,50 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64687,54 +65951,50 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -64753,54 +66013,50 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64819,30 +66075,32 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64851,16 +66109,16 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64879,48 +66137,50 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64939,54 +66199,50 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65005,30 +66261,32 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65037,16 +66295,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65065,30 +66323,32 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65097,16 +66357,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65125,54 +66385,52 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65191,30 +66449,32 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65223,16 +66483,18 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65251,30 +66513,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65283,16 +66547,18 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65311,54 +66577,52 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65377,30 +66641,32 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65409,16 +66675,18 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65437,30 +66705,32 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65469,16 +66739,18 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65497,54 +66769,52 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65563,30 +66833,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65595,16 +66867,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65623,30 +66897,32 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65655,16 +66931,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65683,54 +66961,54 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65749,30 +67027,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65781,16 +67061,20 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65809,30 +67093,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65841,16 +67127,20 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65869,32 +67159,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65904,17 +67194,19 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65933,32 +67225,32 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65968,17 +67260,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65997,32 +67291,32 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66032,17 +67326,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66061,32 +67357,32 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66096,17 +67392,19 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66125,32 +67423,32 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66160,17 +67458,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66189,32 +67489,32 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66224,17 +67524,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66253,32 +67555,32 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66288,17 +67590,19 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66317,32 +67621,32 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66352,17 +67656,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66381,32 +67687,32 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66416,17 +67722,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66445,32 +67753,32 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66480,9 +67788,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66490,9 +67798,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66511,34 +67819,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66548,9 +67854,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66558,9 +67864,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66579,34 +67885,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66616,9 +67920,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66626,9 +67930,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66647,34 +67951,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66684,9 +67986,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66694,9 +67996,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66715,34 +68017,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66752,9 +68052,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66762,9 +68062,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66783,34 +68083,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66820,9 +68118,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66830,9 +68128,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66851,56 +68149,50 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66919,34 +68211,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66955,20 +68245,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66987,34 +68273,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67023,20 +68307,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67055,56 +68335,50 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67123,32 +68397,32 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67157,20 +68431,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67189,32 +68459,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67223,20 +68493,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67255,32 +68521,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67289,20 +68555,16 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67321,54 +68583,54 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67387,32 +68649,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67421,20 +68683,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67453,54 +68711,50 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67519,54 +68773,50 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67585,54 +68835,54 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67651,52 +68901,50 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67715,32 +68963,32 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67749,18 +68997,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67779,52 +69025,50 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +A connection to a list of `Application` values, with data from `Attachment`. +""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67843,52 +69087,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67907,32 +69153,32 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67941,18 +69187,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67971,32 +69215,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68005,18 +69249,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68035,52 +69277,48 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68099,32 +69337,30 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68133,18 +69369,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68163,32 +69397,30 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68197,18 +69429,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68227,54 +69457,48 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68293,32 +69517,30 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68327,20 +69549,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68359,32 +69577,30 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68393,20 +69609,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68425,54 +69637,48 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68491,32 +69697,30 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68525,20 +69729,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68557,32 +69757,30 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68591,20 +69789,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68623,54 +69817,48 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68689,32 +69877,30 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68723,20 +69909,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68755,32 +69937,30 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68789,20 +69969,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68821,32 +69997,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68856,9 +70032,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -68866,9 +70042,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByApplicationId( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68887,54 +70063,54 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -68953,32 +70129,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68988,9 +70164,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -68998,9 +70174,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByArchivedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69019,54 +70195,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByApplicationId( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69085,54 +70261,54 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByCreatedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69151,54 +70327,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69217,54 +70393,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByApplicationId( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69283,32 +70459,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69318,9 +70494,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69328,9 +70504,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByCreatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69349,54 +70525,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69415,54 +70591,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69481,32 +70657,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69516,9 +70692,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69526,9 +70702,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69547,32 +70723,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69582,9 +70758,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69592,9 +70768,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69613,54 +70789,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -69679,54 +70855,54 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69745,32 +70921,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69780,9 +70956,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69790,9 +70966,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69811,54 +70987,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69877,54 +71053,54 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -69943,54 +71119,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70009,32 +71185,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70043,16 +71219,20 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70071,32 +71251,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70105,16 +71285,20 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70133,50 +71317,54 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -70195,50 +71383,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70257,32 +71449,32 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70291,16 +71483,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70319,32 +71515,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70353,16 +71549,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70381,32 +71581,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70416,19 +71616,17 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70447,54 +71645,54 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -70513,32 +71711,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70548,19 +71746,17 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70579,54 +71775,52 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70645,54 +71839,52 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70711,54 +71903,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -70777,54 +71969,52 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70843,32 +72033,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70878,19 +72068,17 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70909,54 +72097,52 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70975,54 +72161,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -71041,32 +72227,32 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71076,19 +72262,17 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71107,32 +72291,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71142,19 +72326,17 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71173,54 +72355,48 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71239,32 +72415,30 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71273,20 +72447,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71305,32 +72475,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71339,20 +72507,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71371,54 +72535,48 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71437,32 +72595,30 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71471,20 +72627,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71503,32 +72655,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71537,20 +72687,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71569,50 +72715,48 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -71631,50 +72775,48 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -71693,32 +72835,30 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71727,16 +72867,16 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71755,32 +72895,30 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71789,16 +72927,16 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71817,50 +72955,48 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -71879,50 +73015,48 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -71941,50 +73075,48 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72003,50 +73135,48 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72065,50 +73195,48 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -72127,50 +73255,48 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -72189,50 +73315,48 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72251,50 +73375,48 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72313,50 +73435,52 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -72375,32 +73499,32 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72409,16 +73533,18 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72437,50 +73563,52 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72499,50 +73627,52 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -72561,32 +73691,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72595,16 +73725,18 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72623,32 +73755,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72657,16 +73789,18 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72685,54 +73819,52 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CbcData` at the end of the edge.""" + node: CbcData - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -72751,32 +73883,32 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72786,19 +73918,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72817,32 +73947,32 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72852,19 +73982,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72883,54 +74011,50 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72949,32 +74073,32 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72983,20 +74107,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73015,32 +74135,32 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73049,20 +74169,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73081,54 +74197,50 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73147,32 +74259,32 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73181,20 +74293,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73213,32 +74321,32 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73247,20 +74355,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73279,48 +74383,54 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73339,30 +74449,30 @@ type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73371,16 +74481,16 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73399,30 +74509,30 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73431,16 +74541,16 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73459,48 +74569,54 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73519,30 +74635,30 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73551,16 +74667,16 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73579,30 +74695,30 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73611,16 +74727,16 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73639,48 +74755,54 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73699,48 +74821,48 @@ type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73759,30 +74881,30 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73791,16 +74913,16 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73819,48 +74941,54 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73879,48 +75007,48 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73939,48 +75067,48 @@ type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73999,48 +75127,54 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -74059,30 +75193,30 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74091,16 +75225,16 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74119,48 +75253,48 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74179,48 +75313,54 @@ type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -74239,30 +75379,30 @@ type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74271,16 +75411,16 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74299,30 +75439,30 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74331,16 +75471,16 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74359,54 +75499,54 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -74425,32 +75565,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74459,20 +75597,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74491,32 +75625,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74525,20 +75657,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74557,54 +75685,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -74623,32 +75751,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74657,20 +75783,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74689,32 +75811,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74723,20 +75843,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74755,54 +75871,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -74821,32 +75937,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74855,20 +75969,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74887,32 +75997,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74921,20 +76029,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74953,52 +76057,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75017,32 +76123,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75051,18 +76155,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75081,32 +76183,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75115,18 +76215,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75145,52 +76243,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75209,32 +76309,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75243,18 +76341,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75273,32 +76369,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75307,18 +76401,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75337,52 +76429,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75401,32 +76495,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75435,18 +76527,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75465,32 +76555,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75499,18 +76587,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75529,19 +76615,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ @@ -77261,16 +78347,400 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77280,17 +78750,19 @@ type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToMa } """ -A `Application` edge in the connection, with data from `ApplicationAnnounced`. +A `Application` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -77309,32 +78781,32 @@ type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77344,17 +78816,19 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77373,32 +78847,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77408,17 +78882,19 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77437,32 +78913,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `Application` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77472,17 +78948,19 @@ type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationAnnounced`. +A `Application` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -77501,32 +78979,32 @@ type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77536,17 +79014,19 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77565,32 +79045,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77600,17 +79080,19 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77629,19 +79111,217 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationFormTemplate9Data`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationFormTemplate9Data`. +""" +type CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! } """ @@ -78626,6 +80306,14 @@ type Mutation { input: CreateApplicationFormDataInput! ): CreateApplicationFormDataPayload + """Creates a single `ApplicationFormTemplate9Data`.""" + createApplicationFormTemplate9Data( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateApplicationFormTemplate9DataInput! + ): CreateApplicationFormTemplate9DataPayload + """Creates a single `ApplicationGisAssessmentHh`.""" createApplicationGisAssessmentHh( """ @@ -79130,6 +80818,26 @@ type Mutation { input: UpdateApplicationFormDataByFormDataIdAndApplicationIdInput! ): UpdateApplicationFormDataPayload + """ + Updates a single `ApplicationFormTemplate9Data` using its globally unique id and a patch. + """ + updateApplicationFormTemplate9Data( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationFormTemplate9DataInput! + ): UpdateApplicationFormTemplate9DataPayload + + """ + Updates a single `ApplicationFormTemplate9Data` using a unique key and a patch. + """ + updateApplicationFormTemplate9DataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationFormTemplate9DataByRowIdInput! + ): UpdateApplicationFormTemplate9DataPayload + """ Updates a single `ApplicationGisAssessmentHh` using its globally unique id and a patch. """ @@ -80004,6 +81712,24 @@ type Mutation { input: DeleteApplicationFormDataByFormDataIdAndApplicationIdInput! ): DeleteApplicationFormDataPayload + """ + Deletes a single `ApplicationFormTemplate9Data` using its globally unique id. + """ + deleteApplicationFormTemplate9Data( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationFormTemplate9DataInput! + ): DeleteApplicationFormTemplate9DataPayload + + """Deletes a single `ApplicationFormTemplate9Data` using a unique key.""" + deleteApplicationFormTemplate9DataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationFormTemplate9DataByRowIdInput! + ): DeleteApplicationFormTemplate9DataPayload + """ Deletes a single `ApplicationGisAssessmentHh` using its globally unique id. """ @@ -81470,6 +83196,93 @@ input ApplicationFormDataInput { applicationId: Int! } +"""The output of our create `ApplicationFormTemplate9Data` mutation.""" +type CreateApplicationFormTemplate9DataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationFormTemplate9Data` that was created by this mutation.""" + applicationFormTemplate9Data: ApplicationFormTemplate9Data + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationFormTemplate9Data`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationFormTemplate9Data`. May be used by Relay 1. + """ + applicationFormTemplate9DataEdge( + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationFormTemplate9DataEdge +} + +"""All input for the create `ApplicationFormTemplate9Data` mutation.""" +input CreateApplicationFormTemplate9DataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `ApplicationFormTemplate9Data` to be created by this mutation.""" + applicationFormTemplate9Data: ApplicationFormTemplate9DataInput! +} + +"""An input for mutations affecting `ApplicationFormTemplate9Data`""" +input ApplicationFormTemplate9DataInput { + """ID of the application this Template 9 Data belongs to""" + applicationId: Int + + """The data imported from the Excel filled by the applicant""" + jsonData: JSON + + """Errors related to Template 9 for that application id""" + errors: JSON + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + """The output of our create `ApplicationGisAssessmentHh` mutation.""" type CreateApplicationGisAssessmentHhPayload { """ @@ -85122,8 +86935,254 @@ input ApplicationClaimsExcelDataPatch { archivedAt: Datetime } -"""All input for the `updateApplicationClaimsExcelDataByRowId` mutation.""" -input UpdateApplicationClaimsExcelDataByRowIdInput { +"""All input for the `updateApplicationClaimsExcelDataByRowId` mutation.""" +input UpdateApplicationClaimsExcelDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationClaimsExcelData` being updated. + """ + applicationClaimsExcelDataPatch: ApplicationClaimsExcelDataPatch! + + """Unique ID for the claims excel data""" + rowId: Int! +} + +""" +The output of our update `ApplicationCommunityProgressReportData` mutation. +""" +type UpdateApplicationCommunityProgressReportDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationCommunityProgressReportData` that was updated by this mutation. + """ + applicationCommunityProgressReportData: ApplicationCommunityProgressReportData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationCommunityProgressReportData`. May be used by Relay 1. + """ + applicationCommunityProgressReportDataEdge( + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationCommunityProgressReportDataEdge +} + +""" +All input for the `updateApplicationCommunityProgressReportData` mutation. +""" +input UpdateApplicationCommunityProgressReportDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationCommunityProgressReportData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationCommunityProgressReportData` being updated. + """ + applicationCommunityProgressReportDataPatch: ApplicationCommunityProgressReportDataPatch! +} + +""" +Represents an update to a `ApplicationCommunityProgressReportData`. Fields that are set will be updated. +""" +input ApplicationCommunityProgressReportDataPatch { + """ID of the application this Community Progress Report belongs to""" + applicationId: Int + + """ + The due date, date received and the file information of the Community Progress Report Excel file + """ + jsonData: JSON + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """History operation""" + historyOperation: String +} + +""" +All input for the `updateApplicationCommunityProgressReportDataByRowId` mutation. +""" +input UpdateApplicationCommunityProgressReportDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationCommunityProgressReportData` being updated. + """ + applicationCommunityProgressReportDataPatch: ApplicationCommunityProgressReportDataPatch! + + """Unique ID for the Community Progress Report""" + rowId: Int! +} + +""" +The output of our update `ApplicationCommunityReportExcelData` mutation. +""" +type UpdateApplicationCommunityReportExcelDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationCommunityReportExcelData` that was updated by this mutation. + """ + applicationCommunityReportExcelData: ApplicationCommunityReportExcelData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationCommunityReportExcelData`. May be used by Relay 1. + """ + applicationCommunityReportExcelDataEdge( + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationCommunityReportExcelDataEdge +} + +""" +All input for the `updateApplicationCommunityReportExcelData` mutation. +""" +input UpdateApplicationCommunityReportExcelDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationCommunityReportExcelData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationCommunityReportExcelData` being updated. + """ + applicationCommunityReportExcelDataPatch: ApplicationCommunityReportExcelDataPatch! +} + +""" +Represents an update to a `ApplicationCommunityReportExcelData`. Fields that are set will be updated. +""" +input ApplicationCommunityReportExcelDataPatch { + """ID of the application this Community Report belongs to""" + applicationId: Int + + """The data imported from the excel filled by the respondent""" + jsonData: JSON + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +""" +All input for the `updateApplicationCommunityReportExcelDataByRowId` mutation. +""" +input UpdateApplicationCommunityReportExcelDataByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -85131,28 +87190,24 @@ input UpdateApplicationClaimsExcelDataByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationClaimsExcelData` being updated. + An object where the defined keys will be set on the `ApplicationCommunityReportExcelData` being updated. """ - applicationClaimsExcelDataPatch: ApplicationClaimsExcelDataPatch! + applicationCommunityReportExcelDataPatch: ApplicationCommunityReportExcelDataPatch! - """Unique ID for the claims excel data""" + """Unique ID for the Community Report excel data""" rowId: Int! } -""" -The output of our update `ApplicationCommunityProgressReportData` mutation. -""" -type UpdateApplicationCommunityProgressReportDataPayload { +"""The output of our update `ApplicationFormData` mutation.""" +type UpdateApplicationFormDataPayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """ - The `ApplicationCommunityProgressReportData` that was updated by this mutation. - """ - applicationCommunityProgressReportData: ApplicationCommunityProgressReportData + """The `ApplicationFormData` that was updated by this mutation.""" + applicationFormData: ApplicationFormData """ Our root query field type. Allows us to run any query from our mutation payload. @@ -85160,40 +87215,24 @@ type UpdateApplicationCommunityProgressReportDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + Reads a single `FormData` that is related to this `ApplicationFormData`. """ - ccbcUserByUpdatedBy: CcbcUser + formDataByFormDataId: FormData """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + Reads a single `Application` that is related to this `ApplicationFormData`. """ - ccbcUserByArchivedBy: CcbcUser + applicationByApplicationId: Application - """ - An edge for our `ApplicationCommunityProgressReportData`. May be used by Relay 1. - """ - applicationCommunityProgressReportDataEdge( - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationCommunityProgressReportDataEdge + """An edge for our `ApplicationFormData`. May be used by Relay 1.""" + applicationFormDataEdge( + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationFormDataEdge } -""" -All input for the `updateApplicationCommunityProgressReportData` mutation. -""" -input UpdateApplicationCommunityProgressReportDataInput { +"""All input for the `updateApplicationFormData` mutation.""" +input UpdateApplicationFormDataInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -85201,57 +87240,31 @@ input UpdateApplicationCommunityProgressReportDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationCommunityProgressReportData` to be updated. + The globally unique `ID` which will identify a single `ApplicationFormData` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationCommunityProgressReportData` being updated. + An object where the defined keys will be set on the `ApplicationFormData` being updated. """ - applicationCommunityProgressReportDataPatch: ApplicationCommunityProgressReportDataPatch! + applicationFormDataPatch: ApplicationFormDataPatch! } """ -Represents an update to a `ApplicationCommunityProgressReportData`. Fields that are set will be updated. +Represents an update to a `ApplicationFormData`. Fields that are set will be updated. """ -input ApplicationCommunityProgressReportDataPatch { - """ID of the application this Community Progress Report belongs to""" - applicationId: Int - - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """The id of the excel data that this record is associated with""" - excelDataId: Int +input ApplicationFormDataPatch { + """The foreign key of a form""" + formDataId: Int - """History operation""" - historyOperation: String + """The foreign key of an application""" + applicationId: Int } """ -All input for the `updateApplicationCommunityProgressReportDataByRowId` mutation. +All input for the `updateApplicationFormDataByFormDataIdAndApplicationId` mutation. """ -input UpdateApplicationCommunityProgressReportDataByRowIdInput { +input UpdateApplicationFormDataByFormDataIdAndApplicationIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -85259,28 +87272,27 @@ input UpdateApplicationCommunityProgressReportDataByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationCommunityProgressReportData` being updated. + An object where the defined keys will be set on the `ApplicationFormData` being updated. """ - applicationCommunityProgressReportDataPatch: ApplicationCommunityProgressReportDataPatch! + applicationFormDataPatch: ApplicationFormDataPatch! - """Unique ID for the Community Progress Report""" - rowId: Int! + """The foreign key of a form""" + formDataId: Int! + + """The foreign key of an application""" + applicationId: Int! } -""" -The output of our update `ApplicationCommunityReportExcelData` mutation. -""" -type UpdateApplicationCommunityReportExcelDataPayload { +"""The output of our update `ApplicationFormTemplate9Data` mutation.""" +type UpdateApplicationFormTemplate9DataPayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """ - The `ApplicationCommunityReportExcelData` that was updated by this mutation. - """ - applicationCommunityReportExcelData: ApplicationCommunityReportExcelData + """The `ApplicationFormTemplate9Data` that was updated by this mutation.""" + applicationFormTemplate9Data: ApplicationFormTemplate9Data """ Our root query field type. Allows us to run any query from our mutation payload. @@ -85288,38 +87300,36 @@ type UpdateApplicationCommunityReportExcelDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + Reads a single `Application` that is related to this `ApplicationFormTemplate9Data`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. """ ccbcUserByArchivedBy: CcbcUser """ - An edge for our `ApplicationCommunityReportExcelData`. May be used by Relay 1. + An edge for our `ApplicationFormTemplate9Data`. May be used by Relay 1. """ - applicationCommunityReportExcelDataEdge( - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationCommunityReportExcelDataEdge + applicationFormTemplate9DataEdge( + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationFormTemplate9DataEdge } -""" -All input for the `updateApplicationCommunityReportExcelData` mutation. -""" -input UpdateApplicationCommunityReportExcelDataInput { +"""All input for the `updateApplicationFormTemplate9Data` mutation.""" +input UpdateApplicationFormTemplate9DataInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -85327,26 +87337,29 @@ input UpdateApplicationCommunityReportExcelDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationCommunityReportExcelData` to be updated. + The globally unique `ID` which will identify a single `ApplicationFormTemplate9Data` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationCommunityReportExcelData` being updated. + An object where the defined keys will be set on the `ApplicationFormTemplate9Data` being updated. """ - applicationCommunityReportExcelDataPatch: ApplicationCommunityReportExcelDataPatch! + applicationFormTemplate9DataPatch: ApplicationFormTemplate9DataPatch! } """ -Represents an update to a `ApplicationCommunityReportExcelData`. Fields that are set will be updated. +Represents an update to a `ApplicationFormTemplate9Data`. Fields that are set will be updated. """ -input ApplicationCommunityReportExcelDataPatch { - """ID of the application this Community Report belongs to""" +input ApplicationFormTemplate9DataPatch { + """ID of the application this Template 9 Data belongs to""" applicationId: Int - """The data imported from the excel filled by the respondent""" + """The data imported from the Excel filled by the applicant""" jsonData: JSON + """Errors related to Template 9 for that application id""" + errors: JSON + """created by user id""" createdBy: Int @@ -85367,9 +87380,9 @@ input ApplicationCommunityReportExcelDataPatch { } """ -All input for the `updateApplicationCommunityReportExcelDataByRowId` mutation. +All input for the `updateApplicationFormTemplate9DataByRowId` mutation. """ -input UpdateApplicationCommunityReportExcelDataByRowIdInput { +input UpdateApplicationFormTemplate9DataByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -85377,99 +87390,14 @@ input UpdateApplicationCommunityReportExcelDataByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationCommunityReportExcelData` being updated. + An object where the defined keys will be set on the `ApplicationFormTemplate9Data` being updated. """ - applicationCommunityReportExcelDataPatch: ApplicationCommunityReportExcelDataPatch! + applicationFormTemplate9DataPatch: ApplicationFormTemplate9DataPatch! - """Unique ID for the Community Report excel data""" + """Unique ID for the Template 9 Data""" rowId: Int! } -"""The output of our update `ApplicationFormData` mutation.""" -type UpdateApplicationFormDataPayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """The `ApplicationFormData` that was updated by this mutation.""" - applicationFormData: ApplicationFormData - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `FormData` that is related to this `ApplicationFormData`. - """ - formDataByFormDataId: FormData - - """ - Reads a single `Application` that is related to this `ApplicationFormData`. - """ - applicationByApplicationId: Application - - """An edge for our `ApplicationFormData`. May be used by Relay 1.""" - applicationFormDataEdge( - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationFormDataEdge -} - -"""All input for the `updateApplicationFormData` mutation.""" -input UpdateApplicationFormDataInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """ - The globally unique `ID` which will identify a single `ApplicationFormData` to be updated. - """ - id: ID! - - """ - An object where the defined keys will be set on the `ApplicationFormData` being updated. - """ - applicationFormDataPatch: ApplicationFormDataPatch! -} - -""" -Represents an update to a `ApplicationFormData`. Fields that are set will be updated. -""" -input ApplicationFormDataPatch { - """The foreign key of a form""" - formDataId: Int - - """The foreign key of an application""" - applicationId: Int -} - -""" -All input for the `updateApplicationFormDataByFormDataIdAndApplicationId` mutation. -""" -input UpdateApplicationFormDataByFormDataIdAndApplicationIdInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """ - An object where the defined keys will be set on the `ApplicationFormData` being updated. - """ - applicationFormDataPatch: ApplicationFormDataPatch! - - """The foreign key of a form""" - formDataId: Int! - - """The foreign key of an application""" - applicationId: Int! -} - """The output of our update `ApplicationGisAssessmentHh` mutation.""" type UpdateApplicationGisAssessmentHhPayload { """ @@ -90168,6 +92096,80 @@ input DeleteApplicationFormDataByFormDataIdAndApplicationIdInput { applicationId: Int! } +"""The output of our delete `ApplicationFormTemplate9Data` mutation.""" +type DeleteApplicationFormTemplate9DataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationFormTemplate9Data` that was deleted by this mutation.""" + applicationFormTemplate9Data: ApplicationFormTemplate9Data + deletedApplicationFormTemplate9DataId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationFormTemplate9Data`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationFormTemplate9Data`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationFormTemplate9Data`. May be used by Relay 1. + """ + applicationFormTemplate9DataEdge( + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationFormTemplate9DataEdge +} + +"""All input for the `deleteApplicationFormTemplate9Data` mutation.""" +input DeleteApplicationFormTemplate9DataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationFormTemplate9Data` to be deleted. + """ + id: ID! +} + +""" +All input for the `deleteApplicationFormTemplate9DataByRowId` mutation. +""" +input DeleteApplicationFormTemplate9DataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the Template 9 Data""" + rowId: Int! +} + """The output of our delete `ApplicationGisAssessmentHh` mutation.""" type DeleteApplicationGisAssessmentHhPayload { """ diff --git a/app/server.ts b/app/server.ts index 22a14ea408..75794f25a4 100644 --- a/app/server.ts +++ b/app/server.ts @@ -35,6 +35,7 @@ import metabaseEmbedUrl from './backend/lib/metabase-embed-url'; import sharepoint from './backend/lib/sharepoint'; import templateUpload from './backend/lib/template-upload'; import s3upload from './backend/lib/s3upload'; +import templateNine from './backend/lib/excel_import/template_nine'; // Function to exclude middleware from certain routes // The paths argument takes an array of strings containing routes to exclude from the middleware @@ -147,6 +148,7 @@ app.prepare().then(async () => { server.use('/', templateUpload); server.use('/', email); server.use('/', reporting); + server.use('/', templateNine); server.use('/', validation); server.all('*', async (req, res) => handle(req, res)); diff --git a/db/deploy/tables/application_form_template_9_data.sql b/db/deploy/tables/application_form_template_9_data.sql new file mode 100644 index 0000000000..230e3666be --- /dev/null +++ b/db/deploy/tables/application_form_template_9_data.sql @@ -0,0 +1,37 @@ +-- Deploy ccbc:tables/application_form_template_9_data to pg + +begin; + +create table ccbc_public.application_form_template_9_data( + id integer primary key generated always as identity, + application_id integer references ccbc_public.application(id), + json_data jsonb, + errors jsonb, + source jsonb +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'application_form_template_9_data'); + +create index application_form_template_9_data_application_id_index on ccbc_public.application_form_template_9_data(application_id); +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'application_form_template_9_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'application_form_template_9_data', 'ccbc_admin'); + +-- Grant ccbc service account permissions +perform ccbc_private.grant_permissions('select', 'application_form_template_9_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'application_form_template_9_data', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.application_form_template_9_data is 'Table containing the Template 9 Data as submitted by the applicant'; +comment on column ccbc_public.application_form_template_9_data.id is 'Unique ID for the Template 9 Data'; +comment on column ccbc_public.application_form_template_9_data.application_id is 'ID of the application this Template 9 Data belongs to'; +comment on column ccbc_public.application_form_template_9_data.json_data is 'The data imported from the Excel filled by the applicant'; +comment on column ccbc_public.application_form_template_9_data.errors is 'Errors related to Template 9 for that application id'; +comment on column ccbc_public.application_form_template_9_data.source is 'The source of the template 9 data, application or RFI and the date'; +commit; diff --git a/db/revert/tables/application_form_template_9_data.sql b/db/revert/tables/application_form_template_9_data.sql new file mode 100644 index 0000000000..c1e12b484e --- /dev/null +++ b/db/revert/tables/application_form_template_9_data.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/application_form_template_9_data from pg + +BEGIN; + +drop table if exists ccbc_public.application_form_template_9_data; + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 1bf309b695..438750c7a2 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -709,3 +709,4 @@ clean_pre_cut_over_cbc_history 2024-10-15T23:26:47Z ,,, # R @1.198.0 2024-10-18T16:12:02Z CCBC Service Account # release v1.198.0 @1.199.0 2024-10-18T16:28:05Z CCBC Service Account # release v1.199.0 @1.200.0 2024-10-18T16:44:25Z CCBC Service Account # release v1.200.0 +tables/application_form_template_9_data 2024-09-25T22:50:17Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # create table for form template 9 data From b7f4dfa496d8d48660c25bf9bae06a20abd2b153 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Fri, 4 Oct 2024 15:32:04 -0700 Subject: [PATCH 02/14] chore: add update mutation, uuid to source --- app/backend/lib/excel_import/template_nine.ts | 174 ++++++++++++++---- 1 file changed, 139 insertions(+), 35 deletions(-) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index ec784364a3..7936125249 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -13,6 +13,14 @@ const createTemplateNineDataMutation = ` } `; +const updateTemplateNineDataMutation = ` + mutation updateTemplateNineData($input: UpdateApplicationFormTemplate9DataByRowIdInput!) { + updateApplicationFormTemplate9DataByRowId(input: $input) { + clientMutationId + } + } +`; + const getTemplateNineQuery = ` query getTemplateNine { allApplications(filter: {ccbcNumber: {isNull: false}}) { @@ -276,7 +284,7 @@ templateNine.get('/api/template-nine/all', async (req, res) => { applicationFormTemplate9Data: { jsonData: templateNineData, errors: templateNineData.errors || null, - source: { source: 'application' }, + source: { source: 'application', uuid }, applicationId, }, }, @@ -339,23 +347,59 @@ templateNine.get('/api/template-nine/rfi/all', async (req, res) => { true ); if (templateNineData) { - await performQuery( - createTemplateNineDataMutation, - { - input: { - applicationFormTemplate9Data: { - jsonData: templateNineData, - errors: templateNineData.errors || null, - source: { - source: 'rfi', - rfiNumber: application?.rfiDataByRfiDataId?.rfiNumber, + const findTemplateNineData = await performQuery( + findTemplateNineDataQuery, + { applicationId }, + req + ); + if ( + findTemplateNineData.data.allApplicationFormTemplate9Data + .totalCount > 0 + ) { + // update + await performQuery( + updateTemplateNineDataMutation, + { + input: { + rowId: + findTemplateNineData.data.allApplicationFormTemplate9Data + .nodes[0].rowId, + applicationFormTemplate9DataPatch: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: + application?.rfiDataByRfiDataId?.rfiNumber || null, + uuid, + }, + applicationId, }, - applicationId, }, }, - }, - req - ); + req + ); + // else create new one + } else { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: application?.rfiDataByRfiDataId?.rfiNumber, + uuid, + }, + applicationId, + }, + }, + }, + req + ); + } } } } @@ -367,27 +411,87 @@ templateNine.get('/api/template-nine/rfi/all', async (req, res) => { } }); -templateNine.get('/api/template-nine/:id/:uuid', async (req, res) => { - const { id, uuid } = req.params; - const applicationId = parseInt(id, 10); - const templateNineData = await handleTemplateNine(uuid, applicationId, req); - if (templateNineData) { - await performQuery( - createTemplateNineDataMutation, - { - input: { - applicationFormTemplate9Data: { - jsonData: templateNineData, - errors: templateNineData.errors || null, - source: { source: 'application' }, - applicationId, +templateNine.get( + '/api/template-nine/:id/:uuid/:source/:rfiNumber?', + async (req, res) => { + const authRole = getAuthRole(req); + const pgRole = authRole?.pgRole; + const isRoleAuthorized = + pgRole === 'ccbc_admin' || pgRole === 'super_admin'; + + if (!isRoleAuthorized) { + return res.status(404).end(); + } + + const { id, uuid, source } = req.params; + let rfiNumber = null; + if ( + !source || + !id || + !uuid || + (source !== 'application' && source !== 'rfi') + ) { + return res.status(400).json({ error: 'Invalid parameters' }); + } + if (source === 'rfi') { + if (!req.params.rfiNumber) { + return res.status(400).json({ error: 'Invalid parameters' }); + } + rfiNumber = req.params.rfiNumber || null; + } + const applicationId = parseInt(id, 10); + const templateNineData = await handleTemplateNine(uuid, applicationId, req); + if (templateNineData) { + const findTemplateNineData = await performQuery( + findTemplateNineDataQuery, + { applicationId }, + req + ); + if ( + findTemplateNineData.data.allApplicationFormTemplate9Data.totalCount > 0 + ) { + // update + await performQuery( + updateTemplateNineDataMutation, + { + input: { + rowId: + findTemplateNineData.data.allApplicationFormTemplate9Data + .nodes[0].rowId, + applicationFormTemplate9DataPatch: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source, + rfiNumber: rfiNumber || null, + uuid, + }, + applicationId, + }, + }, }, - }, - }, - req - ); + req + ); + // else create new one + } else { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { source: 'application' }, + applicationId, + }, + }, + }, + req + ); + } + } + return res.status(200).json({ result: 'success' }); } - return res.status(200).json({ result: 'success' }); -}); +); export default templateNine; From fbe30661a0b2797717f9cf53201724d760b6860c Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Fri, 4 Oct 2024 16:12:53 -0700 Subject: [PATCH 03/14] chore: add update permission, update find query --- app/backend/lib/excel_import/template_nine.ts | 3 +++ db/deploy/tables/application_form_template_9_data.sql | 2 ++ 2 files changed, 5 insertions(+) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index 7936125249..daa8313731 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -58,6 +58,9 @@ const findTemplateNineDataQuery = ` query findTemplateNineDataQuery($applicationId: Int!){ allApplicationFormTemplate9Data(filter: {applicationId: {equalTo: $applicationId}}) { totalCount + nodes { + rowId + } } } `; diff --git a/db/deploy/tables/application_form_template_9_data.sql b/db/deploy/tables/application_form_template_9_data.sql index 230e3666be..c9adf8b682 100644 --- a/db/deploy/tables/application_form_template_9_data.sql +++ b/db/deploy/tables/application_form_template_9_data.sql @@ -20,10 +20,12 @@ begin -- Grant ccbc_admin permissions perform ccbc_private.grant_permissions('select', 'application_form_template_9_data', 'ccbc_admin'); perform ccbc_private.grant_permissions('insert', 'application_form_template_9_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'application_form_template_9_data', 'ccbc_admin'); -- Grant ccbc service account permissions perform ccbc_private.grant_permissions('select', 'application_form_template_9_data', 'ccbc_service_account'); perform ccbc_private.grant_permissions('insert', 'application_form_template_9_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'application_form_template_9_data', 'ccbc_service_account'); end $grant$; From 7789ecde490411400d5ca182e9999fda9b6dd004 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Mon, 7 Oct 2024 14:50:36 -0700 Subject: [PATCH 04/14] chore: add to rfi, import er and rd --- app/backend/lib/excel_import/template_nine.ts | 103 ++++++++++++++++++ .../Analyst/RFI/RFIAnalystUpload.tsx | 2 +- .../uiSchema/analyst/rfiUiSchema.ts | 3 + app/lib/theme/widgets/FileWidget.tsx | 81 +++++++++----- app/server.ts | 1 + 5 files changed, 161 insertions(+), 29 deletions(-) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index daa8313731..53d7eb331b 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -1,9 +1,12 @@ import { Router } from 'express'; import fs from 'fs'; import XLSX, { WorkBook } from 'xlsx'; +import formidable, { File } from 'formidable'; +import { DateTime } from 'luxon'; import { performQuery } from '../graphql'; import getAuthRole from '../../../utils/getAuthRole'; import { getByteArrayFromS3 } from '../s3client'; +import { commonFormidableConfig, parseForm } from '../express-helper'; const createTemplateNineDataMutation = ` mutation createTemplateNineData($input: CreateApplicationFormTemplate9DataInput!) { @@ -165,6 +168,8 @@ const readTemplateNineData = ( const mapLink = sheet[row]['M']; const isIndigenous = sheet[row]['N']; const geoNameId = sheet[row]['G']; + const regionalDistrict = sheet[row]['H']; + const economicRegion = sheet[row]['I']; const pointOfPresenceId = sheet[row]['O']; const proposedSolution = sheet[row]['P']; const households = sheet[row]['Q']; @@ -181,6 +186,8 @@ const readTemplateNineData = ( mapLink, isIndigenous, geoNameId, + regionalDistrict, + economicRegion, pointOfPresenceId, proposedSolution, households, @@ -497,4 +504,100 @@ templateNine.get( } ); +templateNine.post('/api/template-nine/rfi/:id/:rfiNumber', async (req, res) => { + const authRole = getAuthRole(req); + const pgRole = authRole?.pgRole; + const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; + + if (!isRoleAuthorized) { + return res.status(404).end(); + } + + const { id, rfiNumber } = req.params; + + const applicationId = parseInt(id, 10); + + if (!id || !rfiNumber || Number.isNaN(applicationId)) { + return res.status(400).json({ error: 'Invalid parameters' }); + } + + const errorList = []; + const form = formidable(commonFormidableConfig); + + const files = await parseForm(form, req).catch((err) => { + errorList.push({ level: 'file', error: err }); + return res.status(400).json(errorList).end(); + }); + + const filename = Object.keys(files)[0]; + const uploadedFilesArray = files[filename] as Array; + + const uploaded = uploadedFilesArray?.[0]; + console.log('uploaded', uploaded); + if (!uploaded) { + return res.status(400).end(); + } + const buf = fs.readFileSync(uploaded.filepath); + const wb = XLSX.read(buf); + + const templateNineData = await loadTemplateNineData(wb); + + if (templateNineData) { + const findTemplateNineData = await performQuery( + findTemplateNineDataQuery, + { applicationId }, + req + ); + if ( + findTemplateNineData.data.allApplicationFormTemplate9Data.totalCount > 0 + ) { + // update + await performQuery( + updateTemplateNineDataMutation, + { + input: { + rowId: + findTemplateNineData.data.allApplicationFormTemplate9Data.nodes[0] + .rowId, + applicationFormTemplate9DataPatch: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: rfiNumber || null, + fileName: uploaded.originalFilename, + date: DateTime.now().toISO(), + }, + applicationId, + }, + }, + }, + req + ); + // else create new one + } else { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: rfiNumber || null, + fileName: uploaded.originalFilename, + date: DateTime.now().toISO(), + }, + applicationId, + }, + }, + }, + req + ); + } + } + return res.status(200).json({ result: 'success' }); +}); + export default templateNine; diff --git a/app/components/Analyst/RFI/RFIAnalystUpload.tsx b/app/components/Analyst/RFI/RFIAnalystUpload.tsx index c177a476a0..c104d7ee7d 100644 --- a/app/components/Analyst/RFI/RFIAnalystUpload.tsx +++ b/app/components/Analyst/RFI/RFIAnalystUpload.tsx @@ -202,7 +202,7 @@ const RfiAnalystUpload = ({ query }) => { = ({ // 104857600 bytes = 100mb const maxFileSizeInBytes = 104857600; const fileId = isFiles && value[0].id; - const { setTemplateData } = formContext; + const { setTemplateData, rfiNumber } = formContext; const { showToast, hideToast } = useToast(); useEffect(() => { @@ -87,25 +87,44 @@ const FileWidget: React.FC = ({ fileFormData.append('file', file); if (setTemplateData) { try { - const response = await fetch( - `/api/applicant/template?templateNumber=${templateNumber}`, - { - method: 'POST', - body: fileFormData, + if (templateNumber !== 9) { + const response = await fetch( + `/api/applicant/template?templateNumber=${templateNumber}`, + { + method: 'POST', + body: fileFormData, + } + ); + if (response.ok) { + const data = await response.json(); + setTemplateData({ + templateNumber, + data, + }); + } else { + isTemplateValid = false; + setTemplateData({ + templateNumber, + error: true, + }); + } + } else if (templateNumber === 9) { + const response = await fetch( + `/api/template-nine/rfi/${formId}/${rfiNumber}`, + { + method: 'POST', + body: fileFormData, + } + ); + if (response.ok) { + await response.json(); + } else { + isTemplateValid = false; + setTemplateData({ + templateNumber, + error: true, + }); } - ); - if (response.ok) { - const data = await response.json(); - setTemplateData({ - templateNumber, - data, - }); - } else { - isTemplateValid = false; - setTemplateData({ - templateNumber, - error: true, - }); } } catch (error) { isTemplateValid = false; @@ -175,15 +194,21 @@ const FileWidget: React.FC = ({ }; const showToastMessage = (files, type: ToastType = 'success') => { - const fields = - templateNumber === 1 - ? 'Total Households and Indigenous Households data' - : 'Total eligible costs and Total project costs data'; - const message = - type === 'success' - ? `Template ${templateNumber} validation successful, new values for ${fields} in the application will update upon 'Save'` - : `Template ${templateNumber} validation failed: ${files.join(', ')} did not validate due to formatting issues. ${fields} in the application will not update.`; - + let fields: string; + if (templateNumber === 1) { + fields = 'Total Households and Indigenous Households data'; + } else if (templateNumber === 2) { + fields = 'Total eligible costs and Total project costs data'; + } + let message: string; + if (templateNumber === 9) { + message = `Template ${templateNumber} processing successful, geographic names have been automatically updated or created for this application.`; + } else { + message = + type === 'success' + ? `Template ${templateNumber} validation successful, new values for ${fields} in the application will update upon 'Save'` + : `Template ${templateNumber} validation failed: ${files.join(', ')} did not validate due to formatting issues. ${fields} in the application will not update.`; + } showToast(message, type, 100000000); }; diff --git a/app/server.ts b/app/server.ts index 75794f25a4..36be0ba3b7 100644 --- a/app/server.ts +++ b/app/server.ts @@ -124,6 +124,7 @@ app.prepare().then(async () => { 'api/analyst/claims', 'api/analyst/milestone', '/api/applicant/template', + '/api/template-nine/rfi', ], graphqlUploadExpress() ) From a99fe7c0e288fff8301c4c8f42fa0c03968204e6 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Mon, 7 Oct 2024 14:57:30 -0700 Subject: [PATCH 05/14] chore: cleanup --- app/backend/lib/excel_import/template_nine.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index 53d7eb331b..35281cd731 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -278,9 +278,6 @@ templateNine.get('/api/template-nine/all', async (req, res) => { const uuid = applicationData?.uuid || null; // if a uuid is found, handle the template if (uuid) { - // console.log( - // `Handling template nine for application ${applicationId}` - // ); const templateNineData = await handleTemplateNine( uuid, applicationId, @@ -533,7 +530,6 @@ templateNine.post('/api/template-nine/rfi/:id/:rfiNumber', async (req, res) => { const uploadedFilesArray = files[filename] as Array; const uploaded = uploadedFilesArray?.[0]; - console.log('uploaded', uploaded); if (!uploaded) { return res.status(400).end(); } From d9e4580a7a17f7cc11ced8fbe3804d19bb0f2629 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:43:54 -0700 Subject: [PATCH 06/14] feat: show template 9 data in summary page --- .../helpers/ccbcSummaryGenerateFormData.tsx | 71 +- .../application/[applicationId]/summary.tsx | 6 + app/schema/schema.graphql | 19519 ++++++++-------- 3 files changed, 9841 insertions(+), 9755 deletions(-) diff --git a/app/lib/helpers/ccbcSummaryGenerateFormData.tsx b/app/lib/helpers/ccbcSummaryGenerateFormData.tsx index 669b573b99..660391e27f 100644 --- a/app/lib/helpers/ccbcSummaryGenerateFormData.tsx +++ b/app/lib/helpers/ccbcSummaryGenerateFormData.tsx @@ -110,6 +110,46 @@ const handleMilestone = (milestonePercent) => { return `${Math.trunc(milestonePercent * 100)}%`; }; +const getCommunitiesTemplateNine = (communities) => { + if (!communities) { + return null; + } + const benefitingCommunities = []; + const benefitingIndigenousCommunities = []; + communities.forEach((community) => { + if (community?.isIndigenous?.toUpperCase() === 'N') { + if (community?.geoName) { + benefitingCommunities.push({ + name: community?.geoName, + link: community?.mapLink, + }); + } + } + if (community?.isIndigenous?.toUpperCase() === 'Y') { + if (community?.geoName) { + benefitingIndigenousCommunities.push({ + name: community?.geoName, + link: community?.mapLink, + }); + } + } + }); + return { + benefitingCommunities, + benefitingIndigenousCommunities, + }; +}; + +const handleTemplateNineSource = (source) => { + if (source?.source === 'application') { + return 'Application - Template 9'; + } + if (source?.source === 'rfi') { + return `RFI ${source.rfiNumber}`; + } + return 'Application - Template 9'; +}; + const getCommunities = (communities) => { if (!communities) { return null; @@ -339,13 +379,28 @@ const getFormDataFromApplication = ( applicationData?.formData?.jsonData?.projectFunding ?.totalFundingRequestedCCBC ); + const communities = getCommunitiesTemplateNine( + applicationData?.applicationFormTemplate9DataByApplicationId?.nodes[0] + ?.jsonData?.geoNames + ); + const templateNineSource = handleTemplateNineSource( + applicationData?.applicationFormTemplate9DataByApplicationId?.nodes[0] + ?.source + ); return { formData: { counts: { - communities: null, - benefitingCommunities: null, - indigenousCommunities: null, - nonIndigenousCommunities: null, + communities: + (applicationData?.applicationFormTemplate9DataByApplicationId + ?.nodes[0]?.jsonData?.communitiesToBeServed || 0) + + (applicationData?.applicationFormTemplate9DataByApplicationId + ?.nodes[0]?.jsonData?.indigenousCommunitiesToBeServed || 0), + nonIndigenousCommunities: + applicationData?.applicationFormTemplate9DataByApplicationId?.nodes[0] + ?.jsonData?.communitiesToBeServed, + indigenousCommunities: + applicationData?.applicationFormTemplate9DataByApplicationId?.nodes[0] + ?.jsonData?.indigenousCommunitiesToBeServed, benefitingIndigenousCommunities: null, totalHouseholdsImpacted: applicationData?.formData?.jsonData?.benefits?.numberOfHouseholds, @@ -354,6 +409,9 @@ const getFormDataFromApplication = ( ?.householdsImpactedIndigenous, }, locations: { + benefitingCommunities: communities?.benefitingCommunities, + benefitingIndigenousCommunities: + communities?.benefitingIndigenousCommunities, economicRegions: getEconomicRegions(economicRegions), regionalDistricts: getRegionalDistricts(regionalDistricts), }, @@ -397,6 +455,11 @@ const getFormDataFromApplication = ( federalFunding: splitFunding?.federal && 'Calculated from Application, assuming 50:50 split', + benefitingCommunities: templateNineSource, + benefitingIndigenousCommunities: templateNineSource, + nonIndigenousCommunities: templateNineSource, + indigenousCommunities: templateNineSource, + communities: templateNineSource, totalHouseholdsImpacted: 'Application', numberOfIndigenousHouseholds: 'Application', applicantAmount: 'Application', diff --git a/app/pages/analyst/application/[applicationId]/summary.tsx b/app/pages/analyst/application/[applicationId]/summary.tsx index 8b4c935301..910599808b 100644 --- a/app/pages/analyst/application/[applicationId]/summary.tsx +++ b/app/pages/analyst/application/[applicationId]/summary.tsx @@ -61,6 +61,12 @@ const getSummaryQuery = graphql` jsonData } } + applicationFormTemplate9DataByApplicationId { + nodes { + jsonData + source + } + } conditionalApproval { jsonData } diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index b12c83525c..f411124d5b 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -4767,114 +4767,6 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" @@ -5284,45 +5176,9 @@ type CcbcUser implements Node { ): ApplicationPackagesConnection! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! - - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5341,24 +5197,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5377,24 +5233,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationProjectTypesByCreatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5427,10 +5283,8 @@ type CcbcUser implements Node { filter: ApplicationProjectTypeFilter ): ApplicationProjectTypesConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5449,24 +5303,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5485,22 +5337,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5533,8 +5385,8 @@ type CcbcUser implements Node { filter: CcbcUserFilter ): CcbcUsersConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5553,22 +5405,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5587,22 +5439,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: AttachmentFilter + ): AttachmentsConnection! """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5635,8 +5487,8 @@ type CcbcUser implements Node { filter: AttachmentFilter ): AttachmentsConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5655,22 +5507,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: GisDataFilter + ): GisDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5689,90 +5541,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: GisDataFilter + ): GisDataConnection! """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): GisDataConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): GisDataConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6225,312 +6009,6 @@ type CcbcUser implements Node { filter: ApplicationStatusFilter ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcsConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcsConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcsConnection! - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! - - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataChangeReasonCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! - - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataChangeReasonCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! - - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataChangeReasonCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" @@ -7075,8 +6553,10 @@ type CcbcUser implements Node { filter: SowTab8Filter ): SowTab8SConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7095,22 +6575,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7129,22 +6611,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7163,22 +6647,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7197,22 +6681,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7231,22 +6715,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7265,22 +6749,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7299,22 +6783,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7333,22 +6817,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7367,22 +6851,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7401,22 +6887,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7435,22 +6923,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7469,24 +6959,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """ - Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. - """ - applicationFormTemplate9DataByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7505,24 +6993,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormTemplate9Data`.""" - orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormTemplate9DataCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormTemplate9DataFilter - ): ApplicationFormTemplate9DataConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. - """ - applicationFormTemplate9DataByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7541,24 +7027,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormTemplate9Data`.""" - orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormTemplate9DataCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormTemplate9DataFilter - ): ApplicationFormTemplate9DataConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. - """ - applicationFormTemplate9DataByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7577,22 +7061,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormTemplate9Data`.""" - orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormTemplate9DataCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormTemplate9DataFilter - ): ApplicationFormTemplate9DataConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7611,22 +7095,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7645,22 +7129,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7679,22 +7163,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7713,22 +7197,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7747,22 +7231,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7781,22 +7265,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7815,22 +7299,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7849,22 +7333,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7883,22 +7367,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7917,22 +7401,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7951,22 +7435,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7985,22 +7469,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8019,22 +7505,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8053,22 +7541,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8087,22 +7577,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8121,22 +7611,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8167,10 +7657,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8189,22 +7679,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8223,22 +7713,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8269,10 +7759,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8303,10 +7793,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8325,22 +7815,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8371,10 +7861,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8405,10 +7895,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8427,22 +7917,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8473,10 +7997,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8507,10 +8031,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8541,10 +8065,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8575,10 +8133,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8609,10 +8167,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8643,10 +8201,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -8665,22 +8223,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8711,10 +8269,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8733,22 +8291,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8779,10 +8337,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8813,10 +8371,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8835,22 +8393,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8881,10 +8439,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8915,10 +8473,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8937,22 +8495,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8971,22 +8529,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9017,10 +8575,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9051,44 +8609,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9107,22 +8631,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9153,10 +8677,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9187,10 +8711,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9209,22 +8733,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9243,22 +8767,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9289,10 +8813,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9311,22 +8835,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9345,22 +8869,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9391,10 +8915,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9413,22 +8937,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9447,22 +8971,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9493,10 +9017,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9527,10 +9051,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9549,22 +9073,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9583,22 +9107,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9629,10 +9153,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9663,10 +9187,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9685,22 +9209,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9731,10 +9255,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9765,10 +9289,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9799,44 +9323,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9867,10 +9357,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9901,10 +9391,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9935,10 +9425,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9969,10 +9459,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10003,10 +9493,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10037,10 +9527,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10059,22 +9549,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10093,22 +9583,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10139,44 +9629,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10207,10 +9663,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10229,22 +9685,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10263,22 +9719,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10309,10 +9765,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10343,10 +9799,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10365,22 +9821,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10399,22 +9855,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10445,10 +9901,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10467,22 +9923,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10501,22 +9957,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10547,10 +10003,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10581,10 +10037,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10603,22 +10059,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10637,22 +10093,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10683,10 +10139,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10705,22 +10161,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10739,22 +10195,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10785,78 +10241,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GaplessCounterCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10875,22 +10263,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10921,10 +10309,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10955,10 +10343,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10977,22 +10365,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11023,10 +10411,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11057,10 +10445,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -11079,22 +10467,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11125,10 +10513,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11159,10 +10547,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11181,22 +10569,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11227,10 +10615,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -11249,22 +10637,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11283,22 +10671,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11329,10 +10717,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -11351,22 +10739,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11385,22 +10773,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11431,10 +10819,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -11453,22 +10841,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11499,10 +10887,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11533,10 +10921,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11567,10 +10955,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11601,10 +10989,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11635,10 +11023,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11669,10 +11057,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11703,10 +11091,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11737,10 +11125,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11771,10 +11159,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11805,10 +11193,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11839,10 +11227,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11873,10 +11261,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11907,10 +11295,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11941,10 +11329,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11975,10 +11363,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12009,10 +11397,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12043,10 +11431,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12077,10 +11465,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12111,10 +11499,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12145,10 +11533,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12179,10 +11567,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12213,10 +11601,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12247,10 +11635,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12281,10 +11669,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12315,10 +11703,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12349,10 +11737,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12383,10 +11771,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12417,10 +11805,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12451,10 +11839,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12485,10 +11873,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12519,10 +11907,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12553,10 +11941,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12587,10 +11975,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12621,10 +12009,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12655,10 +12043,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12689,10 +12077,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12723,10 +12111,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12757,10 +12145,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12791,10 +12179,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12825,10 +12213,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12859,10 +12247,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12893,10 +12281,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12927,10 +12315,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12961,10 +12349,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12995,10 +12383,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13029,10 +12417,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13063,10 +12451,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13097,10 +12485,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13131,10 +12519,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13165,10 +12553,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13199,10 +12587,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13233,10 +12621,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13267,10 +12655,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13301,10 +12689,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13323,22 +12711,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13369,10 +12757,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13403,10 +12791,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13425,22 +12813,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13471,10 +12859,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13505,10 +12893,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13527,22 +12915,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13573,10 +12961,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13607,10 +12995,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13629,22 +13017,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13675,10 +13063,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13709,10 +13097,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13731,22 +13119,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13777,10 +13165,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13811,10 +13199,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13845,10 +13233,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13879,10 +13267,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13913,10 +13301,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13935,22 +13323,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13981,10 +13369,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14015,10 +13403,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14037,22 +13425,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14083,10 +13471,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14117,10 +13505,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14151,10 +13539,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14173,22 +13561,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14219,10 +13607,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14253,10 +13675,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14275,22 +13697,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14309,22 +13731,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14355,10 +13777,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14389,10 +13811,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14423,10 +13845,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -14457,10 +13879,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14491,10 +13913,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14525,10 +13947,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14559,10 +13981,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14593,10 +14049,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14627,10 +14083,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14661,10 +14117,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -14683,22 +14139,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14729,78 +14185,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14831,10 +14219,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14865,10 +14253,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14899,10 +14287,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14933,10 +14321,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14967,10 +14355,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15001,10 +14389,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15035,10 +14423,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15069,10 +14457,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15103,10 +14491,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15137,7 +14525,7 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" applicationsByApplicationProjectTypeCreatedByAndApplicationId( @@ -17690,7 +17078,7 @@ type CcbcUser implements Node { ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17721,10 +17109,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17755,10 +17143,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17789,10 +17177,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17823,10 +17211,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17857,10 +17245,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17891,10 +17279,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -17913,22 +17301,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17947,22 +17335,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17993,10 +17381,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18015,22 +17403,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18049,22 +17437,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18083,22 +17471,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18117,22 +17505,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18163,10 +17551,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18185,22 +17573,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18219,22 +17607,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18265,10 +17653,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18299,112 +17687,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18423,22 +17709,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18469,10 +17755,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18503,10 +17789,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18525,22 +17811,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18571,10 +17857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18605,10 +17891,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18627,22 +17913,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18673,10 +17959,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18707,10 +17993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18729,22 +18015,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18775,10 +18061,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18809,10 +18095,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18843,10 +18129,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18877,10 +18163,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18911,10 +18197,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -18945,10 +18231,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18979,10 +18265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19013,10 +18299,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19047,10 +18333,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19081,10 +18367,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19115,10 +18401,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19149,10 +18435,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19183,10 +18469,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19217,10 +18503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -19239,22 +18525,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19285,10 +18571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19319,10 +18605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -19341,22 +18627,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19387,10 +18673,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19421,10 +18707,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -19443,22 +18729,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19489,10 +18775,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19523,10 +18809,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19545,22 +18831,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19591,10 +18877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19625,10 +18911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19647,22 +18933,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19693,10 +18979,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19727,10 +19013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19749,22 +19035,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19795,10 +19115,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19829,10 +19149,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19851,22 +19171,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersByCbcDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19897,10 +19251,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersByCbcDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19931,10 +19285,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19953,22 +19307,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -19987,22 +19341,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20033,10 +19387,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20067,10 +19421,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20089,22 +19443,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20135,10 +19489,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20169,78 +19523,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityCreatedByAndCbcId( + cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20271,44 +19557,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! - - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CommunitiesSourceDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20339,10 +19591,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20373,10 +19625,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityUpdatedByAndCbcId( + cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20407,44 +19659,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! - - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CommunitiesSourceDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20475,10 +19693,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20509,10 +19727,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityArchivedByAndCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -20531,22 +19749,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20565,22 +19783,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20611,10 +19829,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -20633,22 +19851,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20679,10 +19897,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20713,10 +19931,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -20735,22 +19953,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20781,10 +19999,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20815,10 +20033,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20849,10 +20067,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20871,22 +20089,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20917,10 +20135,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20951,10 +20169,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20973,22 +20191,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21019,10 +20237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -21041,22 +20259,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -21075,22 +20293,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21121,10 +20339,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21155,10 +20373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -21177,22 +20395,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -21211,22 +20429,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21257,10 +20475,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21279,22 +20497,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -21313,22 +20531,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -21347,22 +20565,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21381,22 +20599,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21427,10 +20645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedBy( + ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21461,82 +20679,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection! -} - -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application` and cursor to aid in pagination. - """ - edges: [ApplicationsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -Table containing the data associated with the CCBC respondents application -""" -type Application implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key ID for the application""" - rowId: Int! - - """Reference number assigned to the application""" - ccbcNumber: String - - """The owner of the application, identified by its JWT sub""" - owner: String! - - """The intake associated with the application, set when it is submitted""" - intakeId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Program type of the project""" - program: String! - - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21555,24 +20701,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21591,24 +20735,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21627,22 +20769,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21661,24 +20803,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21697,22 +20837,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21731,24 +20871,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21767,24 +20905,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21803,26 +20939,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21841,24 +20973,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21877,24 +21007,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21913,24 +21041,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21949,22 +21075,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21983,22 +21109,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -22017,22 +21143,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22051,22 +21177,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -22085,24 +21211,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -22121,24 +21245,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22157,22 +21279,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -22191,24 +21313,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -22227,24 +21347,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22263,22 +21381,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -22297,22 +21415,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -22331,22 +21449,94 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationRfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection! +} - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application` and cursor to aid in pagination. + """ + edges: [ApplicationsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +Table containing the data associated with the CCBC respondents application +""" +type Application implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key ID for the application""" + rowId: Int! + + """Reference number assigned to the application""" + ccbcNumber: String + + """The owner of the application, identified by its JWT sub""" + owner: String! + + """The intake associated with the application, set when it is submitted""" + intakeId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Program type of the project""" + program: String! + + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22365,22 +21555,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22399,24 +21591,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncedCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! """ - Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationFormTemplate9DataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22435,22 +21627,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormTemplate9Data`.""" - orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormTemplate9DataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormTemplate9DataFilter - ): ApplicationFormTemplate9DataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22469,26 +21661,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """ - computed column to return space separated list of amendment numbers for a change request + Reads and enables pagination through a set of `ProjectInformationData`. """ - amendmentNumbers: String - - """Computed column to return analyst lead of an application""" - analystLead: String - - """Computed column to return the analyst-visible status of an application""" - analystStatus: String - announced: Boolean - - """Computed column that returns list of announcements for the application""" - announcements( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22507,17 +21697,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + condition: ProjectInformationDataCondition - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Computed column to get assessment notifications by assessment type""" - assessmentNotifications( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22536,32 +21731,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! - - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData - - """Computed column to return external status of an application""" - externalStatus: String - - """Computed column to display form_data""" - formData: FormData - - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh - - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + condition: ApplicationClaimsDataCondition - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Computed column that returns list of audit records for application""" - history( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22580,50 +21767,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String - - """Computed column to display organization name from json data""" - organizationName: String - - """ - Computed column to return the application announced status for an application - """ - package: Int - - """Computed column to return project information data""" - projectInformation: ProjectInformationData - - """Computed column to display the project name""" - projectName: String - - """Computed column to return last RFI for an application""" - rfi: RfiData - - """Computed column to return status of an application""" - status: String - - """Computed column to return the order of the status""" - statusOrder: Int + condition: ApplicationClaimsExcelDataCondition - """ - Computed column to return the status order with the status name appended for sorting and filtering - """ - statusSortFilter: String - zone: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Computed column to get single lowest zone from json data, used for sorting + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - zones: [Int] - - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22642,22 +21803,26 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22676,22 +21841,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22710,22 +21877,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22744,22 +21913,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22778,22 +21949,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22812,22 +21983,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22846,22 +22017,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22880,22 +22051,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22914,22 +22085,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22948,22 +22121,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -22982,22 +22155,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23016,22 +22191,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23050,22 +22227,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23084,22 +22261,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23118,22 +22295,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationRfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23152,22 +22329,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23186,22 +22365,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23220,22 +22399,24 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -23254,22 +22435,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormTemplate9DataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( """Only read the first `n` values of the set.""" first: Int @@ -23288,22 +22469,26 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """ + computed column to return space separated list of amendment numbers for a change request + """ + amendmentNumbers: String + + """Computed column to return analyst lead of an application""" + analystLead: String + + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + announced: Boolean + + """Computed column that returns list of announcements for the application""" + announcements( """Only read the first `n` values of the set.""" first: Int @@ -23322,22 +22507,17 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData + + """Computed column to get assessment notifications by assessment type""" + assessmentNotifications( """Only read the first `n` values of the set.""" first: Int @@ -23356,22 +22536,94 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! + + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData + + """Computed column to return external status of an application""" + externalStatus: String + + """Computed column to display form_data""" + formData: FormData + + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh + + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData + + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean + + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int """ - A condition to be used in determining which values should be returned by the collection. + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. """ - condition: CcbcUserCondition + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Computed column to display organization name from json data""" + organizationName: String + + """ + Computed column to return the application announced status for an application + """ + package: Int + + """Computed column to return project information data""" + projectInformation: ProjectInformationData + + """Computed column to display the project name""" + projectName: String + + """Computed column to return last RFI for an application""" + rfi: RfiData + + """Computed column to return status of an application""" + status: String + + """Computed column to return the order of the status""" + statusOrder: Int + + """ + Computed column to return the status order with the status name appended for sorting and filtering + """ + statusSortFilter: String + zone: Int + + """ + Computed column to get single lowest zone from json data, used for sorting + """ + zones: [Int] + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -23390,22 +22642,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23436,10 +22688,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23470,10 +22722,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23504,10 +22756,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23538,10 +22790,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23572,10 +22824,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23606,10 +22858,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23640,10 +22892,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23674,10 +22926,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23708,10 +22960,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -23730,22 +22982,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23776,10 +23028,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23810,10 +23062,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23844,10 +23096,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23878,10 +23130,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23912,10 +23164,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23946,10 +23198,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23980,10 +23232,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24014,10 +23266,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24048,10 +23300,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24082,10 +23334,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24116,44 +23368,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24184,10 +23402,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24218,10 +23436,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24252,10 +23470,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24286,10 +23504,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24320,10 +23538,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24354,10 +23572,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24388,10 +23606,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24422,10 +23640,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24456,10 +23674,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24490,10 +23708,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24524,10 +23742,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24558,44 +23776,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24626,10 +23810,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24660,10 +23844,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24694,44 +23878,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24762,10 +23912,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24796,10 +23946,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24830,10 +23980,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24852,22 +24002,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24898,10 +24048,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24932,10 +24082,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24966,10 +24116,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -24988,22 +24138,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25022,22 +24172,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25056,22 +24206,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + ccbcUsersByNotificationApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25102,10 +24252,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25136,10 +24286,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25170,10 +24320,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25204,10 +24354,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25238,10 +24388,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25272,10 +24422,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25306,10 +24456,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -25328,22 +24478,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedBy( + ccbcUsersByAttachmentApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25374,86 +24524,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection! -} - -""" -Table containing intake numbers and their respective open and closing dates -""" -type Intake implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for each intake number""" - rowId: Int! - - """Open date and time for an intake number""" - openTimestamp: Datetime! - - """Close date and time for an intake number""" - closeTimestamp: Datetime! - - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! - - """ - The name of the sequence used to generate CCBC ids. It is added via a trigger - """ - applicationNumberSeqName: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int - - """A description of the intake""" - description: String - - """A column to denote whether the intake is visible to the public""" - hidden: Boolean - - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID - - """A column to denote whether the intake is a rolling intake""" - rollingIntake: Boolean - - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser - - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25472,22 +24546,22 @@ type Intake implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( + ccbcUsersByAttachmentApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25518,10 +24592,10 @@ type Intake implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -25540,22 +24614,22 @@ type Intake implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25586,29 +24660,10 @@ type Intake implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! -} - -""" -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). -""" -scalar UUID - -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key for the gapless counter""" - rowId: Int! - - """Primary key for the gapless counter""" - counter: Int! + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25627,22 +24682,22 @@ type GaplessCounter implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25673,10 +24728,10 @@ type GaplessCounter implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -25695,22 +24750,967 @@ type GaplessCounter implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection! +} + +""" +Table containing intake numbers and their respective open and closing dates +""" +type Intake implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for each intake number""" + rowId: Int! + + """Open date and time for an intake number""" + openTimestamp: Datetime! + + """Close date and time for an intake number""" + closeTimestamp: Datetime! + + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! + + """ + The name of the sequence used to generate CCBC ids. It is added via a trigger + """ + applicationNumberSeqName: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int + + """A description of the intake""" + description: String + + """A column to denote whether the intake is visible to the public""" + hidden: Boolean + + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID + + """A column to denote whether the intake is a rolling intake""" + rollingIntake: Boolean + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter + + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! +} + +""" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +""" +scalar UUID + +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key for the gapless counter""" + rowId: Int! + + """Primary key for the gapless counter""" + counter: Int! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26499,14 +26499,6 @@ input ApplicationFilter { """Some related `applicationPackagesByApplicationId` exist.""" applicationPackagesByApplicationIdExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean - """ Filter by the object’s `applicationProjectTypesByApplicationId` relation. """ @@ -26555,6 +26547,14 @@ input ApplicationFilter { """Some related `applicationStatusesByApplicationId` exist.""" applicationStatusesByApplicationIdExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean + """ Filter by the object’s `applicationAnnouncedsByApplicationId` relation. """ @@ -27275,30 +27275,6 @@ input CcbcUserFilter { """Some related `applicationSowDataByArchivedBy` exist.""" applicationSowDataByArchivedByExist: Boolean - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" - cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean - - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" - cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean - - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. - """ - cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" - cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter @@ -27371,30 +27347,6 @@ input CcbcUserFilter { """Some related `applicationPackagesByArchivedBy` exist.""" applicationPackagesByArchivedByExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean - - """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. - """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean - - """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. - """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter @@ -27541,60 +27493,6 @@ input CcbcUserFilter { """Some related `applicationStatusesByUpdatedBy` exist.""" applicationStatusesByUpdatedByExist: Boolean - """Filter by the object’s `cbcsByCreatedBy` relation.""" - cbcsByCreatedBy: CcbcUserToManyCbcFilter - - """Some related `cbcsByCreatedBy` exist.""" - cbcsByCreatedByExist: Boolean - - """Filter by the object’s `cbcsByUpdatedBy` relation.""" - cbcsByUpdatedBy: CcbcUserToManyCbcFilter - - """Some related `cbcsByUpdatedBy` exist.""" - cbcsByUpdatedByExist: Boolean - - """Filter by the object’s `cbcsByArchivedBy` relation.""" - cbcsByArchivedBy: CcbcUserToManyCbcFilter - - """Some related `cbcsByArchivedBy` exist.""" - cbcsByArchivedByExist: Boolean - - """Filter by the object’s `cbcDataByCreatedBy` relation.""" - cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter - - """Some related `cbcDataByCreatedBy` exist.""" - cbcDataByCreatedByExist: Boolean - - """Filter by the object’s `cbcDataByUpdatedBy` relation.""" - cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter - - """Some related `cbcDataByUpdatedBy` exist.""" - cbcDataByUpdatedByExist: Boolean - - """Filter by the object’s `cbcDataByArchivedBy` relation.""" - cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter - - """Some related `cbcDataByArchivedBy` exist.""" - cbcDataByArchivedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" - cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" - cbcDataChangeReasonsByCreatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" - cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" - cbcDataChangeReasonsByUpdatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" - cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" - cbcDataChangeReasonsByArchivedByExist: Boolean - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter @@ -27691,6 +27589,108 @@ input CcbcUserFilter { """Some related `sowTab8SByArchivedBy` exist.""" sowTab8SByArchivedByExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean + + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean + + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean + + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean + + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean + + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + + """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" + cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean + + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + + """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" + cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean + + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. + """ + cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + + """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" + cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" + cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" + cbcDataChangeReasonsByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" + cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" + cbcDataChangeReasonsByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" + cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" + cbcDataChangeReasonsByArchivedByExist: Boolean + """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter @@ -30096,231 +30096,32 @@ input SowTab8Filter { } """ -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter - - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter - - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter - - """Filter by the object’s `comment` field.""" - comment: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter - - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [CbcApplicationPendingChangeRequestFilter!] - - """Checks for any expressions in this list.""" - or: [CbcApplicationPendingChangeRequestFilter!] - - """Negates the expression.""" - not: CbcApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ -""" -input CbcFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter - - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. - """ - cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" - cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter - - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean - - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter - - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" - cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByCbcId` exist.""" - cbcProjectCommunitiesByCbcIdExist: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [CbcFilter!] - - """Checks for any expressions in this list.""" - or: [CbcFilter!] - - """Negates the expression.""" - not: CbcFilter -} - -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter - - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter - - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcDataFilter { +input CcbcUserToManyCbcProjectFilter { """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataFilter + every: CbcProjectFilter """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataFilter + some: CbcProjectFilter """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataFilter + none: CbcProjectFilter } """ -A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataFilter { +input CbcProjectFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter - """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter @@ -30345,27 +30146,6 @@ input CbcDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter - - """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" - cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" - cbcDataChangeReasonsByCbcDataIdExist: Boolean - - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter - - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean - - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter - - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30385,47 +30165,47 @@ input CbcDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + and: [CbcProjectFilter!] """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + or: [CbcProjectFilter!] """Negates the expression.""" - not: CbcDataFilter + not: CbcProjectFilter } """ -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataToManyCbcDataChangeReasonFilter { +input CcbcUserToManyChangeRequestDataFilter { """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataChangeReasonFilter + every: ChangeRequestDataFilter """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataChangeReasonFilter + some: ChangeRequestDataFilter """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataChangeReasonFilter + none: ChangeRequestDataFilter } """ -A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataChangeReasonFilter { +input ChangeRequestDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcDataId` field.""" - cbcDataId: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30445,8 +30225,14 @@ input CbcDataChangeReasonFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataByCbcDataId` relation.""" - cbcDataByCbcDataId: CbcDataFilter + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30467,47 +30253,53 @@ input CbcDataChangeReasonFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcDataChangeReasonFilter!] + and: [ChangeRequestDataFilter!] """Checks for any expressions in this list.""" - or: [CbcDataChangeReasonFilter!] + or: [ChangeRequestDataFilter!] """Negates the expression.""" - not: CbcDataChangeReasonFilter + not: ChangeRequestDataFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcProjectCommunityFilter { +input CcbcUserToManyNotificationFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: NotificationFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: NotificationFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: NotificationFilter } """ -A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectCommunityFilter { +input NotificationFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """Filter by the object’s `communitiesSourceDataId` field.""" - communitiesSourceDataId: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30527,19 +30319,17 @@ input CbcProjectCommunityFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. - """ - communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" - communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30560,45 +30350,39 @@ input CbcProjectCommunityFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectCommunityFilter!] + and: [NotificationFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectCommunityFilter!] + or: [NotificationFilter!] """Negates the expression.""" - not: CbcProjectCommunityFilter + not: NotificationFilter } """ -A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataFilter { +input EmailRecordFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `geographicNameId` field.""" - geographicNameId: IntFilter - - """Filter by the object’s `bcGeographicName` field.""" - bcGeographicName: StringFilter - - """Filter by the object’s `geographicType` field.""" - geographicType: StringFilter + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """Filter by the object’s `regionalDistrict` field.""" - regionalDistrict: StringFilter + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """Filter by the object’s `economicRegion` field.""" - economicRegion: StringFilter + """Filter by the object’s `subject` field.""" + subject: StringFilter - """Filter by the object’s `latitude` field.""" - latitude: FloatFilter + """Filter by the object’s `body` field.""" + body: StringFilter - """Filter by the object’s `longitude` field.""" - longitude: FloatFilter + """Filter by the object’s `messageId` field.""" + messageId: StringFilter - """Filter by the object’s `mapLink` field.""" - mapLink: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30618,13 +30402,11 @@ input CommunitiesSourceDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """ - Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. - """ - cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter + """Filter by the object’s `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" - cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30645,67 +30427,67 @@ input CommunitiesSourceDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CommunitiesSourceDataFilter!] + and: [EmailRecordFilter!] """Checks for any expressions in this list.""" - or: [CommunitiesSourceDataFilter!] + or: [EmailRecordFilter!] """Negates the expression.""" - not: CommunitiesSourceDataFilter + not: EmailRecordFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataToManyCbcProjectCommunityFilter { +input EmailRecordToManyNotificationFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: NotificationFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: NotificationFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: NotificationFilter } """ -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcProjectFilter { +input CcbcUserToManyApplicationPackageFilter { """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectFilter + every: ApplicationPackageFilter """ - Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectFilter + some: ApplicationPackageFilter """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectFilter + none: ApplicationPackageFilter } """ -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectFilter { +input ApplicationPackageFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `package` field.""" + package: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30725,6 +30507,12 @@ input CbcProjectFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30744,47 +30532,47 @@ input CbcProjectFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + and: [ApplicationPackageFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + or: [ApplicationPackageFilter!] """Negates the expression.""" - not: CbcProjectFilter + not: ApplicationPackageFilter } """ -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyChangeRequestDataFilter { +input CcbcUserToManyApplicationProjectTypeFilter { """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ChangeRequestDataFilter + every: ApplicationProjectTypeFilter """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ChangeRequestDataFilter + some: ApplicationProjectTypeFilter """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ChangeRequestDataFilter + none: ApplicationProjectTypeFilter } """ -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ """ -input ChangeRequestDataFilter { +input ApplicationProjectTypeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `projectType` field.""" + projectType: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30804,9 +30592,6 @@ input ChangeRequestDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter - """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter @@ -30832,53 +30617,82 @@ input ChangeRequestDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + and: [ApplicationProjectTypeFilter!] """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + or: [ApplicationProjectTypeFilter!] """Negates the expression.""" - not: ChangeRequestDataFilter + not: ApplicationProjectTypeFilter } """ -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyNotificationFilter { +input CcbcUserToManyCcbcUserFilter { """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: NotificationFilter + every: CcbcUserFilter """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: NotificationFilter + some: CcbcUserFilter """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: NotificationFilter + none: CcbcUserFilter } """ -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ """ -input NotificationFilter { +input CcbcUserToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter + + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter + + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} + +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `notificationType` field.""" - notificationType: StringFilter + """Filter by the object’s `file` field.""" + file: UUIDFilter + + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `fileName` field.""" + fileName: StringFilter + + """Filter by the object’s `fileType` field.""" + fileType: StringFilter + + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30901,14 +30715,13 @@ input NotificationFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """ + Filter by the object’s `applicationStatusByApplicationStatusId` relation. + """ + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: Boolean + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -30929,39 +30742,222 @@ input NotificationFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [NotificationFilter!] + and: [AttachmentFilter!] + + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] + + """Negates the expression.""" + not: AttachmentFilter +} + +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `status` field.""" + status: StringFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter + + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] + + """Negates the expression.""" + not: ApplicationStatusFilter +} + +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter + + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter + + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} + +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter + + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter + + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter + + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter + + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] + + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} + +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter + + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter + + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} + +""" +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter + + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter + + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter +} + +""" +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """Checks for any expressions in this list.""" - or: [NotificationFilter!] + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """Negates the expression.""" - not: NotificationFilter + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter } """ -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ """ -input EmailRecordFilter { +input AnalystFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `toEmail` field.""" - toEmail: StringFilter - - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter - - """Filter by the object’s `subject` field.""" - subject: StringFilter - - """Filter by the object’s `body` field.""" - body: StringFilter - - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `familyName` field.""" + familyName: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -30981,11 +30977,17 @@ input EmailRecordFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter + """Filter by the object’s `active` field.""" + active: BooleanFilter - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean + """Filter by the object’s `email` field.""" + email: StringFilter + + """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31006,67 +31008,47 @@ input EmailRecordFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + and: [AnalystFilter!] """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + or: [AnalystFilter!] """Negates the expression.""" - not: EmailRecordFilter -} - -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter - - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter - - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter + not: AnalystFilter } """ -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPackageFilter { +input AnalystToManyApplicationAnalystLeadFilter { """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPackageFilter + every: ApplicationAnalystLeadFilter """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPackageFilter + some: ApplicationAnalystLeadFilter """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPackageFilter + none: ApplicationAnalystLeadFilter } """ -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationPackageFilter { +input ApplicationAnalystLeadFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `package` field.""" - package: IntFilter + """Filter by the object’s `analystId` field.""" + analystId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31092,6 +31074,12 @@ input ApplicationPackageFilter { """A related `applicationByApplicationId` exists.""" applicationByApplicationIdExists: Boolean + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter + + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31111,74 +31099,154 @@ input ApplicationPackageFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + and: [ApplicationAnalystLeadFilter!] """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + or: [ApplicationAnalystLeadFilter!] """Negates the expression.""" - not: ApplicationPackageFilter + not: ApplicationAnalystLeadFilter } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPendingChangeRequestFilter { +input CcbcUserToManyApplicationAnalystLeadFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: ApplicationAnalystLeadFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: ApplicationAnalystLeadFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: ApplicationAnalystLeadFilter } """ -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationPendingChangeRequestFilter { +input CcbcUserToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter + + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter + + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} + +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter + + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter + + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} + +""" +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter + + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter + + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter +} + +""" +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyRecordVersionFilter { + """ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RecordVersionFilter + + """ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RecordVersionFilter + + """ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RecordVersionFilter +} + +""" +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input RecordVersionFilter { """Filter by the object’s `rowId` field.""" - rowId: IntFilter + rowId: BigIntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Filter by the object’s `op` field.""" + op: OperationFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `tableName` field.""" + tableName: StringFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `record` field.""" + record: JSONFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31186,180 +31254,276 @@ input ApplicationPendingChangeRequestFilter { """A related `ccbcUserByCreatedBy` exists.""" ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] + and: [RecordVersionFilter!] """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] + or: [RecordVersionFilter!] """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter + not: RecordVersionFilter } """ -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationProjectTypeFilter { +input BigIntFilter { """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationProjectTypeFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: BigInt + + """Not equal to the specified value.""" + notEqualTo: BigInt """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - some: ApplicationProjectTypeFilter + distinctFrom: BigInt + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigInt + + """Included in the specified list.""" + in: [BigInt!] + + """Not included in the specified list.""" + notIn: [BigInt!] + + """Less than the specified value.""" + lessThan: BigInt + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigInt + + """Greater than the specified value.""" + greaterThan: BigInt + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigInt +} + +""" +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +""" +scalar BigInt +""" +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +""" +input OperationFilter { """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - none: ApplicationProjectTypeFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: Operation + + """Not equal to the specified value.""" + notEqualTo: Operation + + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Operation + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation + + """Included in the specified list.""" + in: [Operation!] + + """Not included in the specified list.""" + notIn: [Operation!] + + """Less than the specified value.""" + lessThan: Operation + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation + + """Greater than the specified value.""" + greaterThan: Operation + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} + +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE } """ -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ """ -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input BigFloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Equal to the specified value.""" + equalTo: BigFloat - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Not equal to the specified value.""" + notEqualTo: BigFloat - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigFloat - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Included in the specified list.""" + in: [BigFloat!] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Not included in the specified list.""" + notIn: [BigFloat!] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Less than the specified value.""" + lessThan: BigFloat - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Greater than the specified value.""" + greaterThan: BigFloat - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +""" +A floating point number that requires more precision than IEEE 754 binary 64 +""" +scalar BigFloat - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab2Filter { + """ + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab2Filter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter +} - """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Negates the expression.""" - not: ApplicationProjectTypeFilter + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter + + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter } """ -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCcbcUserFilter { +input CcbcUserToManySowTab8Filter { """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CcbcUserFilter + every: SowTab8Filter """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CcbcUserFilter + some: SowTab8Filter """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CcbcUserFilter + none: SowTab8Filter } """ -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAttachmentFilter { +input CcbcUserToManyApplicationPendingChangeRequestFilter { """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AttachmentFilter + every: ApplicationPendingChangeRequestFilter """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AttachmentFilter + some: ApplicationPendingChangeRequestFilter """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AttachmentFilter + none: ApplicationPendingChangeRequestFilter } """ -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input AttachmentFilter { +input ApplicationPendingChangeRequestFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `file` field.""" - file: UUIDFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `fileName` field.""" - fileName: StringFilter - - """Filter by the object’s `fileType` field.""" - fileType: StringFilter - - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter - """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31382,13 +31546,8 @@ input AttachmentFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. - """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter - - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31409,27 +31568,47 @@ input AttachmentFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + and: [ApplicationPendingChangeRequestFilter!] """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + or: [ApplicationPendingChangeRequestFilter!] """Negates the expression.""" - not: AttachmentFilter + not: ApplicationPendingChangeRequestFilter } """ -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationStatusFilter { +input CcbcUserToManyCbcFilter { + """ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcFilter + + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter + + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} + +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Filter by the object’s `status` field.""" - status: StringFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31437,8 +31616,11 @@ input ApplicationStatusFilter { """Filter by the object’s `createdAt` field.""" createdAt: DatetimeFilter - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter """Filter by the object’s `archivedBy` field.""" archivedBy: IntFilter @@ -31446,29 +31628,31 @@ input ApplicationStatusFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. + """ + cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" + cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" + cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """Some related `cbcProjectCommunitiesByCbcId` exist.""" + cbcProjectCommunitiesByCbcIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31476,155 +31660,66 @@ input ApplicationStatusFilter { """A related `ccbcUserByCreatedBy` exists.""" ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" ccbcUserByUpdatedBy: CcbcUserFilter """A related `ccbcUserByUpdatedBy` exists.""" ccbcUserByUpdatedByExists: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] - - """Negates the expression.""" - not: ApplicationStatusFilter -} - -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter - - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter - - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} - -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter - - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter - - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter - - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + and: [CbcFilter!] """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + or: [CbcFilter!] """Negates the expression.""" - not: ApplicationStatusTypeFilter -} - -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter - - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter - - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} - -""" -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyGisDataFilter { - """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: GisDataFilter - - """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: GisDataFilter - - """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: GisDataFilter + not: CbcFilter } """ -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAnalystFilter { +input CbcToManyCbcDataFilter { """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AnalystFilter + every: CbcDataFilter """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AnalystFilter + some: CbcDataFilter """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AnalystFilter + none: CbcDataFilter } """ -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input AnalystFilter { +input CbcDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31644,17 +31739,26 @@ input AnalystFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `active` field.""" - active: BooleanFilter + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Filter by the object’s `email` field.""" - email: StringFilter + """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" + cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" + cbcDataChangeReasonsByCbcDataIdExist: Boolean - """Some related `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter + + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean + + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter + + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31675,47 +31779,47 @@ input AnalystFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AnalystFilter!] + and: [CbcDataFilter!] """Checks for any expressions in this list.""" - or: [AnalystFilter!] + or: [CbcDataFilter!] """Negates the expression.""" - not: AnalystFilter + not: CbcDataFilter } """ -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input AnalystToManyApplicationAnalystLeadFilter { +input CbcDataToManyCbcDataChangeReasonFilter { """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnalystLeadFilter + every: CbcDataChangeReasonFilter """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnalystLeadFilter + some: CbcDataChangeReasonFilter """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnalystLeadFilter + none: CbcDataChangeReasonFilter } """ -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationAnalystLeadFilter { +input CbcDataChangeReasonFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcDataId` field.""" + cbcDataId: IntFilter - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """Filter by the object’s `description` field.""" + description: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31735,17 +31839,8 @@ input ApplicationAnalystLeadFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter - - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """Filter by the object’s `cbcDataByCbcDataId` relation.""" + cbcDataByCbcDataId: CbcDataFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -31766,202 +31861,135 @@ input ApplicationAnalystLeadFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + and: [CbcDataChangeReasonFilter!] """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + or: [CbcDataChangeReasonFilter!] """Negates the expression.""" - not: ApplicationAnalystLeadFilter + not: CbcDataChangeReasonFilter } """ -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationAnalystLeadFilter { +input CbcToManyCbcApplicationPendingChangeRequestFilter { """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnalystLeadFilter + every: CbcApplicationPendingChangeRequestFilter """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnalystLeadFilter + some: CbcApplicationPendingChangeRequestFilter """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnalystLeadFilter + none: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter +input CbcApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """Filter by the object’s `comment` field.""" + comment: StringFilter - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter -""" -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcFilter { - """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcFilter -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataChangeReasonFilter -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -""" -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcApplicationPendingChangeRequestFilter!] + + """Checks for any expressions in this list.""" + or: [CbcApplicationPendingChangeRequestFilter!] + + """Negates the expression.""" + not: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRecordVersionFilter { +input CbcToManyCbcProjectCommunityFilter { """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RecordVersionFilter + every: CbcProjectCommunityFilter """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RecordVersionFilter + some: CbcProjectCommunityFilter """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RecordVersionFilter + none: CbcProjectCommunityFilter } """ -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input RecordVersionFilter { +input CbcProjectCommunityFilter { """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter - - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter - - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter - - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + rowId: IntFilter - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """Filter by the object’s `communitiesSourceDataId` field.""" + communitiesSourceDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -31969,251 +31997,223 @@ input RecordVersionFilter { """Filter by the object’s `createdAt` field.""" createdAt: DatetimeFilter - """Filter by the object’s `record` field.""" - record: JSONFilter - - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Checks for all expressions in this list.""" - and: [RecordVersionFilter!] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """Negates the expression.""" - not: RecordVersionFilter -} + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean -""" -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ -""" -input BigIntFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. """ - isNull: Boolean + communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter - """Equal to the specified value.""" - equalTo: BigInt + """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" + communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean - """Not equal to the specified value.""" - notEqualTo: BigInt + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigInt + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Included in the specified list.""" - in: [BigInt!] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Not included in the specified list.""" - notIn: [BigInt!] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: BigInt + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt + """Checks for all expressions in this list.""" + and: [CbcProjectCommunityFilter!] - """Greater than the specified value.""" - greaterThan: BigInt + """Checks for any expressions in this list.""" + or: [CbcProjectCommunityFilter!] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt + """Negates the expression.""" + not: CbcProjectCommunityFilter } """ -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. +A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ """ -scalar BigInt +input CommunitiesSourceDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ -""" -input OperationFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `geographicNameId` field.""" + geographicNameId: IntFilter - """Equal to the specified value.""" - equalTo: Operation + """Filter by the object’s `bcGeographicName` field.""" + bcGeographicName: StringFilter - """Not equal to the specified value.""" - notEqualTo: Operation + """Filter by the object’s `geographicType` field.""" + geographicType: StringFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Operation + """Filter by the object’s `regionalDistrict` field.""" + regionalDistrict: StringFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation + """Filter by the object’s `economicRegion` field.""" + economicRegion: StringFilter - """Included in the specified list.""" - in: [Operation!] + """Filter by the object’s `latitude` field.""" + latitude: FloatFilter - """Not included in the specified list.""" - notIn: [Operation!] + """Filter by the object’s `longitude` field.""" + longitude: FloatFilter - """Less than the specified value.""" - lessThan: Operation + """Filter by the object’s `mapLink` field.""" + mapLink: StringFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than the specified value.""" - greaterThan: Operation + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter -""" -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ -""" -input BigFloatFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. """ - isNull: Boolean + cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - """Equal to the specified value.""" - equalTo: BigFloat + """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" + cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean - """Not equal to the specified value.""" - notEqualTo: BigFloat + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigFloat + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Included in the specified list.""" - in: [BigFloat!] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Not included in the specified list.""" - notIn: [BigFloat!] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: BigFloat + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat + """Checks for all expressions in this list.""" + and: [CommunitiesSourceDataFilter!] - """Greater than the specified value.""" - greaterThan: BigFloat + """Checks for any expressions in this list.""" + or: [CommunitiesSourceDataFilter!] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat + """Negates the expression.""" + not: CommunitiesSourceDataFilter } """ -A floating point number that requires more precision than IEEE 754 binary 64 -""" -scalar BigFloat - -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab1Filter { +input CommunitiesSourceDataToManyCbcProjectCommunityFilter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab1Filter + every: CbcProjectCommunityFilter """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab1Filter + some: CbcProjectCommunityFilter """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab1Filter + none: CbcProjectCommunityFilter } """ -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab2Filter { +input CcbcUserToManyCbcDataFilter { """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab2Filter + every: CbcDataFilter """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab2Filter + some: CbcDataFilter """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab2Filter + none: CbcDataFilter } """ -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab7Filter { +input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab7Filter + every: CbcApplicationPendingChangeRequestFilter """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab7Filter + some: CbcApplicationPendingChangeRequestFilter """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab7Filter + none: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab8Filter { +input CcbcUserToManyCbcDataChangeReasonFilter { """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab8Filter + every: CbcDataChangeReasonFilter """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab8Filter + some: CbcDataChangeReasonFilter """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab8Filter + none: CbcDataChangeReasonFilter } """ @@ -32453,6 +32453,9 @@ input ApplicationFormTemplate9DataFilter { """Filter by the object’s `errors` field.""" errors: JSONFilter + """Filter by the object’s `source` field.""" + source: JSONFilter + """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -32977,26 +32980,6 @@ input ApplicationToManyApplicationPackageFilter { none: ApplicationPackageFilter } -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter - - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter - - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter -} - """ A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ """ @@ -33137,6 +33120,26 @@ input ApplicationToManyApplicationStatusFilter { none: ApplicationStatusFilter } +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + """ A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ @@ -39266,159 +39269,6 @@ input ApplicationPackageCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! - - """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [ApplicationPendingChangeRequestsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_pending_change_request""" - rowId: Int! - - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest -} - -"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" -enum ApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `ApplicationProjectType` values.""" type ApplicationProjectTypesConnection { """A list of `ApplicationProjectType` objects.""" @@ -43554,6 +43404,159 @@ type ApplicationRfiDataEdge { node: ApplicationRfiData } +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [ApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_pending_change_request""" + rowId: Int! + + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest +} + +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `ApplicationAnnounced` values.""" type ApplicationAnnouncedsConnection { """A list of `ApplicationAnnounced` objects.""" @@ -43728,11 +43731,14 @@ type ApplicationFormTemplate9Data implements Node { applicationId: Int """The data imported from the Excel filled by the applicant""" - jsonData: JSON! + jsonData: JSON """Errors related to Template 9 for that application id""" errors: JSON + """The source of the template 9 data, application or RFI and the date""" + source: JSON + """created by user id""" createdBy: Int @@ -43792,6 +43798,8 @@ enum ApplicationFormTemplate9DataOrderBy { JSON_DATA_DESC ERRORS_ASC ERRORS_DESC + SOURCE_ASC + SOURCE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -43825,6 +43833,9 @@ input ApplicationFormTemplate9DataCondition { """Checks for equality with the object’s `errors` field.""" errors: JSON + """Checks for equality with the object’s `source` field.""" + source: JSON + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -47327,210 +47338,16 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47540,19 +47357,17 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47571,32 +47386,32 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47606,19 +47421,17 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47637,19 +47450,19 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ @@ -49101,6 +48914,204 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyE ): ApplicationStatusesConnection! } +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + """ A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ @@ -49500,47 +49511,38 @@ type ApplicationsEdge { node: Application } -"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" -type CbcApplicationPendingChangeRequestsConnection { - """A list of `CbcApplicationPendingChangeRequest` objects.""" - nodes: [CbcApplicationPendingChangeRequest]! +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! """ - A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. + A list of edges which contains the `CbcProject` and cursor to aid in pagination. """ - edges: [CbcApplicationPendingChangeRequestsEdge!]! + edges: [CbcProjectsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. - """ + """The count of *all* `CbcProject` you could get from the connection.""" totalCount: Int! } -"""Table containing the pending change request details of the application""" -type CbcApplicationPendingChangeRequest implements Node { +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the cbc_application_pending_change_request""" + """Unique ID for the row""" rowId: Int! - """ - ID of the cbc application this cbc_application_pending_change_request belongs to - """ - cbcId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean + """The data imported from the excel for that cbc project""" + jsonData: JSON! - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime """created by user id""" createdBy: Int @@ -49560,25 +49562,326 @@ type CbcApplicationPendingChangeRequest implements Node { """archived at timestamp""" archivedAt: Datetime + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcProject` edge in the connection.""" +type CbcProjectsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcProject` at the end of the edge.""" + node: CbcProject +} + +"""Methods to use when ordering `CbcProject`.""" +enum CbcProjectsOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcProject` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CbcProjectCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. """ - cbcByCbcId: Cbc + edges: [CcbcUsersEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser +} + +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `GisData` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [GisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! +} + +"""A `GisData` edge in the connection.""" +type GisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `GisData` at the end of the edge.""" + node: GisData +} + +"""A connection to a list of `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [EmailRecordsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! +} + +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord +} + +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser + edges: [RecordVersionsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RecordVersion` you could get from the connection.""" + totalCount: Int! +} + +""" +Table for tracking history records on tables that auditing is enabled on +""" +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier""" + rowId: BigInt! + + """The id of the record the history record is associated with""" + recordId: UUID + + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID + + """The operation performed on the record (created, updated, deleted)""" + op: Operation! + + """The timestamp of the history record""" + ts: Datetime! + + """The oid of the table the record is associated with""" + tableOid: BigFloat! + + """The schema of the table the record is associated with""" + tableSchema: String! + + """The name of the table the record is associated with""" + tableName: String! + + """The user that created the record""" + createdBy: Int + + """The timestamp of when the record was created""" + createdAt: Datetime! + + """The record in JSON format""" + record: JSON + + """The previous version of the record in JSON format""" + oldRecord: JSON + + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser +} + +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} + +"""Methods to use when ordering `RecordVersion`.""" +enum RecordVersionsOrderBy { + NATURAL + ID_ASC + ID_DESC + RECORD_ID_ASC + RECORD_ID_DESC + OLD_RECORD_ID_ASC + OLD_RECORD_ID_DESC + OP_ASC + OP_DESC + TS_ASC + TS_DESC + TABLE_OID_ASC + TABLE_OID_DESC + TABLE_SCHEMA_ASC + TABLE_SCHEMA_DESC + TABLE_NAME_ASC + TABLE_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + RECORD_ASC + RECORD_DESC + OLD_RECORD_ASC + OLD_RECORD_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt + + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID + + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID + + """Checks for equality with the object’s `op` field.""" + op: Operation + + """Checks for equality with the object’s `ts` field.""" + ts: Datetime + + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat + + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String + + """Checks for equality with the object’s `tableName` field.""" + tableName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `record` field.""" + record: JSON + + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON +} + +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc` and cursor to aid in pagination. + """ + edges: [CbcsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! } """ @@ -49626,10 +49929,8 @@ type Cbc implements Node { """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByArchivedBy: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -49648,22 +49949,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -49696,8 +49997,10 @@ type Cbc implements Node { filter: CbcDataFilter ): CbcDataConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -49716,19 +50019,19 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `CbcProjectCommunity`.""" cbcProjectCommunitiesByCbcId( @@ -49790,8 +50093,42 @@ type Cbc implements Node { filter: RecordVersionFilter ): RecordVersionsConnection! + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! + """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49822,10 +50159,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49856,10 +50193,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49890,10 +50227,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCbcIdAndProjectNumber( + cbcsByCbcDataProjectNumberAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -49924,10 +50261,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndCreatedBy( + ccbcUsersByCbcDataProjectNumberAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49958,10 +50295,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndUpdatedBy( + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49992,10 +50329,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndArchivedBy( + ccbcUsersByCbcDataProjectNumberAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50026,44 +50363,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataProjectNumberAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50094,10 +50397,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50128,10 +50431,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50162,7 +50465,7 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" communitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataId( @@ -50301,69 +50604,6 @@ type Cbc implements Node { ): CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" -enum CbcApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - CBC_ID_ASC - CBC_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcApplicationPendingChangeRequest` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `cbcId` field.""" - cbcId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `CbcData` values.""" type CbcDataConnection { """A list of `CbcData` objects.""" @@ -50984,6 +51224,159 @@ input CbcDataCondition { changeReason: String } +"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" +type CbcApplicationPendingChangeRequestsConnection { + """A list of `CbcApplicationPendingChangeRequest` objects.""" + nodes: [CbcApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [CbcApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type CbcApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the cbc_application_pending_change_request""" + rowId: Int! + + """ + ID of the cbc application this cbc_application_pending_change_request belongs to + """ + cbcId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" +type CbcApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" + node: CbcApplicationPendingChangeRequest +} + +"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" +enum CbcApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcApplicationPendingChangeRequest` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `CbcProjectCommunity` values.""" type CbcProjectCommunitiesConnection { """A list of `CbcProjectCommunity` objects.""" @@ -51679,281 +52072,6 @@ type CbcProjectCommunitiesEdge { node: CbcProjectCommunity } -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! - - """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. - """ - edges: [RecordVersionsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RecordVersion` you could get from the connection.""" - totalCount: Int! -} - -""" -Table for tracking history records on tables that auditing is enabled on -""" -type RecordVersion implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: BigInt! - - """The id of the record the history record is associated with""" - recordId: UUID - - """ - The id of the previous version of the record the history record is associated with - """ - oldRecordId: UUID - - """The operation performed on the record (created, updated, deleted)""" - op: Operation! - - """The timestamp of the history record""" - ts: Datetime! - - """The oid of the table the record is associated with""" - tableOid: BigFloat! - - """The schema of the table the record is associated with""" - tableSchema: String! - - """The name of the table the record is associated with""" - tableName: String! - - """The user that created the record""" - createdBy: Int - - """The timestamp of when the record was created""" - createdAt: Datetime! - - """The record in JSON format""" - record: JSON - - """The previous version of the record in JSON format""" - oldRecord: JSON - - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} - -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion -} - -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - """A connection to a list of `Cbc` values, with data from `CbcData`.""" type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { """A list of `Cbc` objects.""" @@ -52434,6 +52552,204 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { ): CbcDataConnection! } +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + """ A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. """ @@ -52780,212 +53096,6 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { ): CbcProjectCommunitiesConnection! } -"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" -type CbcApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" - node: CbcApplicationPendingChangeRequest -} - -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! - - """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. - """ - edges: [CbcProjectsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CbcProject` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the row""" - rowId: Int! - - """The data imported from the excel for that cbc project""" - jsonData: JSON! - - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcProject` edge in the connection.""" -type CbcProjectsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcProject` at the end of the edge.""" - node: CbcProject -} - -"""Methods to use when ordering `CbcProject`.""" -enum CbcProjectsOrderBy { - NATURAL - ID_ASC - ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcProject` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CbcProjectCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. - """ - edges: [CcbcUsersEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `GisData` and cursor to aid in pagination. - """ - edges: [GisDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `GisData` you could get from the connection.""" - totalCount: Int! -} - -"""A `GisData` edge in the connection.""" -type GisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `GisData` at the end of the edge.""" - node: GisData -} - -"""A connection to a list of `Cbc` values.""" -type CbcsConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! - - """ - A list of edges which contains the `Cbc` and cursor to aid in pagination. - """ - edges: [CbcsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Cbc` you could get from the connection.""" - totalCount: Int! -} - """A `Cbc` edge in the connection.""" type CbcsEdge { """A cursor for use in pagination.""" @@ -52995,105 +53105,6 @@ type CbcsEdge { node: Cbc } -"""A connection to a list of `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! - - """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. - """ - edges: [EmailRecordsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} - -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord -} - -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { - NATURAL - ID_ASC - ID_DESC - RECORD_ID_ASC - RECORD_ID_DESC - OLD_RECORD_ID_ASC - OLD_RECORD_ID_DESC - OP_ASC - OP_DESC - TS_ASC - TS_DESC - TABLE_OID_ASC - TABLE_OID_DESC - TABLE_SCHEMA_ASC - TABLE_SCHEMA_DESC - TABLE_NAME_ASC - TABLE_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - RECORD_ASC - RECORD_DESC - OLD_RECORD_ASC - OLD_RECORD_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt - - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID - - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID - - """Checks for equality with the object’s `op` field.""" - op: Operation - - """Checks for equality with the object’s `ts` field.""" - ts: Datetime - - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat - - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String - - """Checks for equality with the object’s `tableName` field.""" - tableName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `record` field.""" - record: JSON - - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON -} - """A connection to a list of `CommunitiesSourceData` values.""" type CommunitiesSourceDataConnection { """A list of `CommunitiesSourceData` objects.""" @@ -60025,410 +60036,14 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60440,7 +60055,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60450,7 +60065,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60487,14 +60102,14 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60506,7 +60121,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60516,7 +60131,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60551,16 +60166,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60570,9 +60185,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60580,9 +60195,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60601,34 +60216,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60638,9 +60251,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60648,9 +60261,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60669,34 +60282,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60706,9 +60317,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60716,9 +60327,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60737,34 +60348,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60774,9 +60383,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60784,9 +60393,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60805,34 +60414,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60842,9 +60449,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60852,9 +60459,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60873,34 +60480,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60910,9 +60515,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60920,9 +60525,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60941,34 +60546,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60980,7 +60583,7 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp """ A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61029,14 +60632,82 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61048,7 +60719,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61058,7 +60729,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61095,38 +60766,38 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61163,82 +60834,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61248,9 +60853,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61258,9 +60863,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61279,32 +60884,34 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61314,9 +60921,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61324,9 +60931,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61345,32 +60952,34 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61380,9 +60989,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61390,9 +60999,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61411,32 +61020,34 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61446,9 +61057,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61456,9 +61067,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61477,32 +61088,34 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61512,9 +61125,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61522,9 +61135,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61543,32 +61156,34 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61580,7 +61195,7 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """ A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61627,14 +61242,14 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61646,7 +61261,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61656,7 +61271,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61693,14 +61308,14 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61712,7 +61327,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61722,7 +61337,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61757,16 +61372,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61776,9 +61391,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61786,9 +61401,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61807,32 +61422,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61842,9 +61457,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61852,9 +61467,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61873,32 +61488,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61908,9 +61523,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61918,9 +61533,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByArchivedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61939,32 +61554,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61974,9 +61589,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61984,9 +61599,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62005,32 +61620,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62040,9 +61655,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62050,9 +61665,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByCreatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62071,32 +61686,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62106,9 +61721,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62116,9 +61731,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationInternalDescriptionsByArchivedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62137,32 +61752,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62174,7 +61789,7 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """ A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62221,14 +61836,14 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62240,7 +61855,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62250,7 +61865,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """ Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationInternalDescriptionsByCreatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62287,14 +61902,14 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62306,7 +61921,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62316,7 +61931,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """ Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62351,16 +61966,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62370,9 +61985,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62380,9 +61995,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62401,32 +62016,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62436,9 +62051,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62446,9 +62061,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByUpdatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62467,32 +62082,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62502,9 +62117,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62512,9 +62127,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByArchivedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62533,32 +62148,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62568,9 +62183,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62578,9 +62193,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62599,32 +62214,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62634,9 +62249,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62644,9 +62259,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByCreatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62665,32 +62280,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62700,9 +62315,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62710,9 +62325,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByArchivedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62731,32 +62346,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62768,7 +62383,7 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """ A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62815,14 +62430,14 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62834,7 +62449,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62844,7 +62459,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62881,14 +62496,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62900,7 +62515,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62910,7 +62525,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62945,16 +62560,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62964,9 +62579,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62974,9 +62589,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62995,32 +62610,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63030,9 +62645,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63040,9 +62655,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63061,32 +62676,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63096,9 +62711,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63106,9 +62721,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63127,32 +62742,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63162,9 +62777,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63172,9 +62787,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63193,32 +62808,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63228,9 +62843,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63238,9 +62853,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63259,32 +62874,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63294,9 +62909,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63304,9 +62919,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63325,32 +62940,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63362,7 +62977,7 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """ A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63409,14 +63024,14 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63428,7 +63043,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63438,7 +63053,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """ Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63475,14 +63090,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63494,7 +63109,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63504,7 +63119,73 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """ Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63539,80 +63220,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. -""" -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63622,17 +63239,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63651,32 +63270,32 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63686,17 +63305,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63715,32 +63336,32 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63750,17 +63371,19 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63779,32 +63402,32 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63814,17 +63437,19 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63843,32 +63468,32 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63878,17 +63503,19 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63907,32 +63534,32 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63944,7 +63571,7 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63989,14 +63616,14 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64008,7 +63635,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64016,7 +63643,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64053,14 +63680,14 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64072,7 +63699,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64080,7 +63707,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64115,38 +63742,36 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64165,32 +63790,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64200,19 +63825,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64231,32 +63854,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64266,19 +63889,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64297,54 +63918,52 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64363,32 +63982,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64398,19 +64017,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64429,32 +64046,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64464,19 +64081,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64495,54 +64110,50 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64561,32 +64172,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64595,20 +64206,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64627,32 +64234,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64661,20 +64268,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64693,32 +64296,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64728,7 +64331,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64736,7 +64339,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64773,14 +64376,14 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64790,7 +64393,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64798,7 +64401,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64835,14 +64438,14 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64852,7 +64455,7 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64860,7 +64463,7 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64895,34 +64498,36 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64941,32 +64546,32 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64975,16 +64580,18 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65003,32 +64610,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65037,16 +64644,18 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65065,32 +64674,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65102,7 +64711,7 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC """ A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65147,14 +64756,14 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65166,7 +64775,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65174,7 +64783,135 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + changeRequestDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65211,14 +64948,14 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65230,7 +64967,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65238,7 +64975,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65273,36 +65010,36 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65337,36 +65074,34 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyE } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65385,52 +65120,50 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65449,52 +65182,50 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65513,32 +65244,32 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65547,18 +65278,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65577,52 +65306,50 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65641,50 +65368,50 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65719,34 +65446,34 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65783,14 +65510,14 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65800,7 +65527,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65808,7 +65535,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65843,34 +65570,34 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65905,34 +65632,34 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65967,34 +65694,34 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66031,14 +65758,14 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66048,7 +65775,7 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66056,7 +65783,7 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66091,16 +65818,80 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66109,16 +65900,18 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66137,50 +65930,52 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66199,50 +65994,52 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66261,32 +66058,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66295,16 +66092,18 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66323,32 +66122,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66357,16 +66156,18 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66385,32 +66186,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66422,7 +66223,7 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66467,14 +66268,14 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66486,7 +66287,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66494,7 +66295,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66531,14 +66332,14 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66550,7 +66351,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66558,7 +66359,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66593,16 +66394,16 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66612,17 +66413,19 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66641,32 +66444,32 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66676,17 +66479,19 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66705,32 +66510,32 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66740,17 +66545,19 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66769,32 +66576,32 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66804,17 +66611,19 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66833,32 +66642,32 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66868,17 +66677,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66897,32 +66708,32 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66932,17 +66743,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66961,32 +66774,32 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66996,9 +66809,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67006,9 +66819,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio node: Application """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationPendingChangeRequestsByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67027,32 +66840,32 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67062,9 +66875,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67072,9 +66885,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67093,32 +66906,32 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67128,9 +66941,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67138,9 +66951,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67159,54 +66972,50 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67225,32 +67034,32 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67259,20 +67068,140 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany totalCount: Int! } +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUsersConnection! +} + """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUsersConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByCreatedBy( + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67291,32 +67220,32 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67325,20 +67254,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67357,54 +67282,50 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67423,54 +67344,50 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67489,54 +67406,54 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67555,54 +67472,50 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67621,32 +67534,32 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67655,20 +67568,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67687,54 +67596,50 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67753,54 +67658,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67819,32 +67724,32 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67853,20 +67758,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67885,32 +67786,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67919,20 +67820,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67951,32 +67848,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67985,20 +67882,16 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68017,54 +67910,54 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -68083,32 +67976,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68117,20 +68010,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68149,32 +68038,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68183,16 +68072,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68211,32 +68100,30 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68245,16 +68132,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68273,32 +68160,30 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { + filter: GisDataFilter + ): GisDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68307,16 +68192,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68335,32 +68220,30 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68369,16 +68252,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68397,32 +68280,30 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68431,16 +68312,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68459,32 +68340,30 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68493,16 +68372,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68521,50 +68400,48 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68583,54 +68460,48 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68649,32 +68520,30 @@ type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68683,16 +68552,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68711,32 +68580,30 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68745,16 +68612,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68773,50 +68640,48 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68835,54 +68700,48 @@ type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68901,32 +68760,30 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68935,16 +68792,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68963,50 +68820,54 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69025,50 +68886,54 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69087,54 +68952,54 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69153,32 +69018,32 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69187,16 +69052,20 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69215,50 +69084,54 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69277,48 +69150,54 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69337,30 +69216,32 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69369,16 +69250,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69397,30 +69282,32 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69429,16 +69316,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69457,48 +69348,54 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69517,48 +69414,54 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69577,30 +69480,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69609,16 +69514,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69637,30 +69546,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69669,16 +69580,20 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69697,48 +69612,54 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -69757,48 +69678,54 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69817,30 +69744,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69849,16 +69778,20 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69877,30 +69810,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69909,16 +69844,20 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69937,48 +69876,54 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -69997,32 +69942,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70032,9 +69977,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70042,9 +69987,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70063,54 +70008,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByAnalystId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70129,32 +70074,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70164,9 +70109,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70174,9 +70119,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByUpdatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70195,54 +70140,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByArchivedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -70261,32 +70206,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70296,9 +70241,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70306,9 +70251,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70327,54 +70272,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByAnalystId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70393,32 +70338,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70428,9 +70373,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70438,9 +70383,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnalystLeadsByCreatedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70459,54 +70404,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70525,54 +70468,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -70591,54 +70534,52 @@ type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70657,32 +70598,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70692,19 +70633,17 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70723,54 +70662,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70789,54 +70726,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -70855,54 +70792,52 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70921,32 +70856,32 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70956,19 +70891,81 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70987,54 +70984,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -71053,54 +71050,52 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71119,54 +71114,52 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71185,32 +71178,32 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71219,20 +71212,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71251,32 +71240,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71285,20 +71274,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71317,54 +71302,50 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71383,54 +71364,50 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71449,32 +71426,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71483,20 +71460,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71515,32 +71488,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71549,20 +71522,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71581,52 +71550,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -71645,54 +71616,48 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71711,32 +71676,30 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71745,18 +71708,16 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71775,52 +71736,54 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -71839,52 +71802,48 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71903,54 +71862,48 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71969,52 +71922,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72033,32 +71988,30 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72067,18 +72020,16 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72097,52 +72048,48 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72161,54 +72108,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatusType` you could get from the connection. + The count of *all* `ApplicationSowData` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72227,32 +72174,30 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72261,18 +72206,16 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72291,32 +72234,30 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72325,18 +72266,16 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72355,48 +72294,54 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72415,30 +72360,30 @@ type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72447,16 +72392,16 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72475,30 +72420,30 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72507,16 +72452,16 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72535,48 +72480,54 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72595,30 +72546,30 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72627,16 +72578,16 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72655,30 +72606,30 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72687,16 +72638,16 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72715,48 +72666,54 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72775,48 +72732,48 @@ type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72835,30 +72792,30 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72867,16 +72824,16 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72895,48 +72852,54 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -72955,48 +72918,48 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73015,48 +72978,48 @@ type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73075,48 +73038,54 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73135,30 +73104,30 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73167,16 +73136,16 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73195,48 +73164,48 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73255,48 +73224,54 @@ type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73315,30 +73290,30 @@ type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73347,16 +73322,16 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73375,30 +73350,30 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73407,16 +73382,16 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73435,52 +73410,54 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73499,32 +73476,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73533,18 +73508,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73563,32 +73536,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73597,18 +73568,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73627,52 +73596,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -73691,32 +73662,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73725,18 +73694,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73755,32 +73722,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73789,18 +73754,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73819,52 +73782,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -73883,32 +73848,32 @@ type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73918,17 +73883,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73947,32 +73914,32 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73982,17 +73949,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74011,50 +73980,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -74073,32 +74046,32 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74107,16 +74080,20 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74135,32 +74112,32 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74169,16 +74146,20 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74197,50 +74178,54 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -74259,32 +74244,32 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74293,16 +74278,20 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74321,32 +74310,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74355,16 +74344,20 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74383,54 +74376,48 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74449,30 +74436,30 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74481,16 +74468,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74509,30 +74496,30 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74541,16 +74528,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74569,54 +74556,48 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74635,30 +74616,30 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74667,16 +74648,16 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74695,30 +74676,30 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74727,16 +74708,16 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74755,54 +74736,48 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -74821,48 +74796,48 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -74881,30 +74856,30 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74913,16 +74888,16 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74941,54 +74916,48 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75007,48 +74976,48 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75067,48 +75036,48 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -75127,54 +75096,48 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75193,30 +75156,30 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75225,16 +75188,16 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75253,48 +75216,48 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75313,54 +75276,48 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -75379,30 +75336,30 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75411,16 +75368,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75439,30 +75396,30 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75471,16 +75428,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75499,54 +75456,54 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75565,30 +75522,32 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75597,16 +75556,20 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75625,30 +75588,32 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75657,16 +75622,20 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75685,54 +75654,54 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75751,30 +75720,32 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75783,16 +75754,20 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75811,30 +75786,32 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75843,16 +75820,20 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75871,54 +75852,54 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75937,30 +75918,32 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75969,16 +75952,20 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75997,30 +75984,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76029,16 +76018,20 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76057,54 +76050,52 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -76123,30 +76114,32 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76155,16 +76148,18 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76183,30 +76178,32 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76215,16 +76212,18 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76243,54 +76242,52 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -76309,30 +76306,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76341,16 +76340,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76369,30 +76370,32 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76401,16 +76404,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76429,54 +76434,52 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -76495,30 +76498,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76527,16 +76532,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76555,30 +76562,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76587,16 +76596,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76615,19 +76626,19 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ @@ -83264,6 +83275,9 @@ input ApplicationFormTemplate9DataInput { """Errors related to Template 9 for that application id""" errors: JSON + """The source of the template 9 data, application or RFI and the date""" + source: JSON + """created by user id""" createdBy: Int @@ -87360,6 +87374,9 @@ input ApplicationFormTemplate9DataPatch { """Errors related to Template 9 for that application id""" errors: JSON + """The source of the template 9 data, application or RFI and the date""" + source: JSON + """created by user id""" createdBy: Int From 5b0b672df5aad5caeb08ce8c0225d7a1dab349ee Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:27:35 -0700 Subject: [PATCH 07/14] test: template 9 backend --- app/backend/lib/excel_import/template_nine.ts | 10 +- .../lib/excel_import/template_nine.test.ts | 242 ++++++++++++++++++ 2 files changed, 249 insertions(+), 3 deletions(-) create mode 100644 app/tests/backend/lib/excel_import/template_nine.test.ts diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index 35281cd731..8323991efa 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -231,7 +231,7 @@ const handleTemplateNine = async ( // if it exists, and update is false do nothing // update should only be true for RFIs as form data is immutable if ( - findResult.data.allApplicationFormTemplate9Data.totalCount > 0 && + findResult?.data?.allApplicationFormTemplate9Data.totalCount > 0 && !update ) { return null; @@ -455,7 +455,8 @@ templateNine.get( req ); if ( - findTemplateNineData.data.allApplicationFormTemplate9Data.totalCount > 0 + findTemplateNineData?.data?.allApplicationFormTemplate9Data + ?.totalCount > 0 ) { // update await performQuery( @@ -504,7 +505,10 @@ templateNine.get( templateNine.post('/api/template-nine/rfi/:id/:rfiNumber', async (req, res) => { const authRole = getAuthRole(req); const pgRole = authRole?.pgRole; - const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; + const isRoleAuthorized = + pgRole === 'ccbc_admin' || + pgRole === 'super_admin' || + pgRole === 'ccbc_analyst'; if (!isRoleAuthorized) { return res.status(404).end(); diff --git a/app/tests/backend/lib/excel_import/template_nine.test.ts b/app/tests/backend/lib/excel_import/template_nine.test.ts new file mode 100644 index 0000000000..124608d175 --- /dev/null +++ b/app/tests/backend/lib/excel_import/template_nine.test.ts @@ -0,0 +1,242 @@ +/** + * @jest-environment node + */ +import { mocked } from 'jest-mock'; +import express from 'express'; +import session from 'express-session'; +import request from 'supertest'; +import { getByteArrayFromS3 } from 'backend/lib/s3client'; +import path from 'path'; +import fs from 'fs'; +import templateNine from '../../../../backend/lib/excel_import/template_nine'; +import { performQuery } from '../../../../backend/lib/graphql'; +import getAuthRole from '../../../../utils/getAuthRole'; + +jest.mock('../../../../utils/getAuthRole'); +jest.mock('../../../../backend/lib/graphql'); +jest.mock('../../../../backend/lib/s3client'); + +function FormDataMock() { + this.append = jest.fn(); +} + +global.FormData = jest.fn(() => { + return FormDataMock(); +}) as jest.Mock; + +jest.setTimeout(10000); + +describe('The Community Progress Report import', () => { + let app; + + beforeEach(async () => { + app = express(); + app.use(session({ secret: crypto.randomUUID(), cookie: { secure: true } })); + app.use('/', templateNine); + }); + + it('should receive the correct response for unauthorized user for each endpoint', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_guest', + landingRoute: '/', + }; + }); + + const all = await request(app).get('/api/template-nine/all'); + expect(all.status).toBe(404); + + const rfiAll = await request(app).get('/api/template-nine/rfi/all'); + expect(rfiAll.status).toBe(404); + + const uuid = await request(app).get('/api/template-nine/1/1234-abcde'); + expect(uuid.status).toBe(404); + + const rfi = await request(app).post( + '/api/template-nine/rfi/1/CCBC-00001-1' + ); + expect(rfi.status).toBe(404); + }); + + it('should process all the past applications template 9 for authorized user', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_admin', + landingRoute: '/', + }; + }); + + mocked(performQuery).mockImplementation(async () => { + return { + data: { + allApplications: { + nodes: [ + { + applicationFormDataByApplicationId: { + nodes: [ + { + formDataByFormDataId: { + jsonData: { + templateUploads: { + detailedBudget: [ + { + id: 999, + name: 'Some other non template 9.xlsx', + size: 55555, + type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + uuid: 'c5155b84-ade5-4444-9999-111111', + }, + ], + geographicNames: [ + { + id: 888, + name: 'template_9-backbone_and_geographic_names.xlsx', + size: 77777, + type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + uuid: '8a7d15e3-3333-1111-5555-4444444', + }, + ], + }, + }, + }, + }, + ], + }, + rowId: 1, + }, + ], + }, + allApplicationFormTemplate9Data: { + totalCount: 0, + }, + }, + }; + }); + + mocked(getByteArrayFromS3).mockImplementation(async () => { + const filePath = path.resolve(__dirname, 'template9-complete.xlsx'); // Adjust path if needed + const fileContent = fs.readFileSync(filePath); + + // Mock the function to return the file content + return fileContent; + }); + + const all = await request(app).get('/api/template-nine/all'); + expect(all.status).toBe(200); + }); + + it('should process all the rfis that have template 9 for authorized user', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_admin', + landingRoute: '/', + }; + }); + + mocked(performQuery).mockImplementation(async () => { + return { + data: { + allApplicationRfiData: { + nodes: [ + { + rfiDataByRfiDataId: { + jsonData: { + rfiType: ['Missing files or information'], + rfiDueBy: '2023-02-24', + rfiAdditionalFiles: { + geographicNames: [ + { + id: 1000, + name: 'template_9-backbone_and_geographic_names-rfi.xlsx', + size: 9999, + type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + uuid: '93f09138-9e69-1238-abc-123456789', + }, + ], + geographicNamesRfi: true, + }, + }, + rfiNumber: 'CCBC-00001-1', + }, + applicationId: 1, + }, + ], + }, + allApplicationFormTemplate9Data: { + totalCount: 0, + }, + }, + }; + }); + + mocked(getByteArrayFromS3).mockImplementation(async () => { + const filePath = path.resolve(__dirname, 'template9-complete.xlsx'); // Adjust path if needed + const fileContent = fs.readFileSync(filePath); + + // Mock the function to return the file content + return fileContent; + }); + + const all = await request(app).get('/api/template-nine/rfi/all'); + expect(all.status).toBe(200); + }); + + it('should return correct responses for different combinations of applicationId and rfiNumber', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_admin', + landingRoute: '/', + }; + }); + + const noParams = await request(app).get('/api/template-nine/1/'); + expect(noParams.status).toBe(404); + + const noSource = await request(app).get('/api/template-nine/1/1234-abcde/'); + expect(noSource.status).toBe(404); + + const wrongSource = await request(app).get( + '/api/template-nine/1/1234-abcde/test' + ); + expect(wrongSource.status).toBe(400); + + const noRfiNumber = await request(app).get( + '/api/template-nine/1/1234-abcde/rfi/' + ); + expect(noRfiNumber.status).toBe(400); + + const application = await request(app).get( + '/api/template-nine/1/1234-abcde/application' + ); + + expect(application.status).toBe(200); + + mocked(performQuery).mockImplementation(async () => { + return { + data: { + allApplicationFormTemplate9Data: { + totalCount: 0, + }, + }, + }; + }); + }); + + it('should process the rfi for authorized user', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_admin', + landingRoute: '/', + }; + }); + + const response = await request(app) + .post('/api/template-nine/rfi/1/CCBC-00001-1') + .set('Content-Type', 'application/json') + .set('Connection', 'keep-alive') + .field('data', JSON.stringify({ name: 'form' })) + .attach('template9', `${__dirname}/template9-complete.xlsx`); + + expect(response.status).toBe(200); + }); +}); From f90c3cae6f7421ffe28b22e76a2d31eb6c6f690f Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:28:22 -0700 Subject: [PATCH 08/14] test: add template 9 file --- .../lib/excel_import/template9-complete.xlsx | Bin 0 -> 589750 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 app/tests/backend/lib/excel_import/template9-complete.xlsx diff --git a/app/tests/backend/lib/excel_import/template9-complete.xlsx b/app/tests/backend/lib/excel_import/template9-complete.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..72c225e5a247830c9babd9d2a4c105a0ae20508a GIT binary patch literal 589750 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%0AZ> zrVC17*z3Ql0J}7(dp&BMdOwo{w~sXQp^##Jfb3ixyQaMvqizmx3dq@(cc+dWcq%nf zIG!=gWNE1Z!186qpWoCqVm5C?C-2uKKW|bS+6tx>65jU>xU*eU5I6##iwf(tf(n^* zT)2HaP@@-xToS7)+sSW}3KO5ae5zQH{%FrtY$YKzaNQ%dm?gj&svGVC-`>-=^2i^S zu;Kz1X(?ZG#?(Psj*uA@ivM#SK^DDXL9=PxdWA|Nu1o2B8c_lD zshYKj{k|xJ(zZAOWm5KD&^V|xu>HPfcrnOd{zcoa88C7Nh)G?0c8!NQDgfZLl%B}~ zxk1!1x+Vu0Lv1~x#{4y2VNce5PLIpT!`3}k=`I!i>@1Bl1nEX092NL~xieG{FzWd+ z2ENO^ECy))k@i6TA|rS90sfO7&+JAWuN3PT(%K@~3M<1xmkoK0@@lS#<i|GFKFXQd7P;RfHq>T=fm5L7@QC=YXByA&YhgMLg|nC!R<5Pd8pF8BVcks z4GUQai#7tf$F)6Zo;q$lY=kJ=L^wNgsn z0iN+bzC^d<;$GXw`;|%E0SxHn+6OvohWQVopY)fYm2!PVjjBf_RIQjp z5hguAlfbxN(zW|N*(GCa*FssOES@HQG$ZM)85R1_?(7XJsQGnc5pasz#dS0D1>+vc z&YE|6C4)xN)IIV@kIZQ>-F08vEz^(x6-G(!vOC2u{61{q=@<1)MV1)^8mLvp9nBa5 z#qe-tP>vv#tpX@`$v~gG)E@hx&u0N1{+K_jXK)J%vA-Z1jHjX!$bTkTECAIC=K~K^5`+L#3BiKP*&O?*ePM}xQGdd&e`8P-E!)C z=RVEm0xRxFyrG=@-dP&Y(pVEO11WCNvN)MH6w7J98TGoV7%DBSVEFW`u}cYO^o%zI zOA1{gz(AJ>cx!3c@G;5zJSoqcutxt#08BrO2OEq%K9vJh0(iBh*0xf4q4T103Dv0) z)Exvpmq8*5@tTjIEfsWDU=2@vgkwjS=_`81^mdxINgQJ|UqmMlE=I1AJkIoX7QVLzPOs`5>%({Og4dvk+c4Dem?~HC0yu3$ z-TT6o-cH5xRT&#`Emlh+)bkH*dtd$t<$2xe7U}?X?gQi}>5~_bW;Sy=i0@_xB1j%- zXfL2s!ff#0DM8cl@03v90i6;S!u*f^P6??9(E8+d)NVjc$c^#e3E?QG!_{CI%rL{7 ze~0J@Tu!E9+pE2oU9I(ou0zrkT)PS#tx#3nrp%FB$*!~*hV74{v5!}%PiBMH?AsJ) z4Sui8o0YfYxJNFM)}zqn~DNA1f|MYcUsjt>awBqbLv8 ze%T+#1kTrGjR_*pv)Z`pV6`gQKF&PF5SMq`b1jNhYf18WL{{s)b%OlkrHrBThmAw< zN**GTe(a-xE^C1HF|R*G-r|bR z7KYQYt_RDe4D#4A>ydCGgk5=)yNJL z`;Ene?<4avB70MZWyt*%YRKF zVW|Ug6kY6c4O~TKH|Fg@b7O6f2=*l4@YGK4Ostx*9|{QP!gI@DGEU`=Dr zGkk$2`rx2VGbi*YQqtBaleK~FUc$R`!Y2LS-O!=Hlmoh%_2C}G{9>sYhtL35QPJU6 zYYvc3$8!P%H;_gJxH30mrBo>5Hwgu1g1a`VzS%&$!vm%YKlD<(11zp#KOV3v&#ui= zys2R)0#+f;g0(skJ@+TKFxkpnl4`8O>-J{)U6?#sX=M6)E<8G)QSxdp)ZwUm|F{Pxe~FFiZQW z+YRsC_97I&!nSj@QNz|D0L1Thp5F*7g>?;LU@yK?^-d%*{}$eW zbrcgf?jDK!rHsnqVn@k%rI=po6lir?*d%V9DzhWOxe(n^SKZ z`qAVD=q6jnhqnpc#E>G$#?9r&C)GhT07zQP#-^2&gG7)2op!D&j8CheLA;^9 zvv&?|@gpvT$u4r4x>v>d?GwqdNAXhaV9{8BiU<}{`3R4K%*K6}FN*3q>jlsb`L%D@ z6c2I!nD;SJ!=pN40h02ZIr_r30a?^}feHf?OQ|(9ZKY?jchDV}`*F>5{@>$-1l<8n zhL42uhxBw6v*6d$v5L;IgH#u6xVBcLN_Qnf5>w6JPp^GiU$b1sfZ8HVOk5m$=)g13 z4ISb`Xpjg@*8R0TaFFK4oS?N)F)r>7ad3d{M5nq$k>uPzBU>%mL~5#QZw_Qf5qlu@jGx^Gek4d$Dm5ki`mz&xik+fe(BzvG!2qF3n)~OU6|A}S!R~Ax} z^#$#w{J(x+G2s3mKLFiFM5(DTFQXVkhtUwS^BENVc+-01 z{yt2DFfC?hMj9`MNw};Bx-W41yD#v;8ehCn~{lB zy2sJbUO`%~m1beP;{ZzAd0Yvt9=r=hH@k@9jv;hz5bb%lTkq-i(dZ*^%xdX$PR!lY z`*DBj7`SVZed7DF)5g7OL{A+Y{Ez=d>G$1Ml%`$(O22WgD4oV4xgHv;G)Z_QV%uWwI%!FT<0CQ?0OraL{ zSHC&Dj#PPpxBk3=@QNlpXphCvFm9X9F}00ZNvV4!oZ95U(;|;s z)T)ja<=UT5Sq4vx5YSc8Q6xLqL85T zbxaf=r@860a7xvB}!wTo;;iH_vaXUPIFC^o{~fP43*0cJFHsHLYjSa+;tzRU|X@twBnX^8mNYjiO`!o>k8BqE>OWflvZY>0dNhwdWC%fP>n&fgE{1FrBRK~%|q z1R6o-oL}8(Zey7C*g zf5PbK^CJ$F5~0>AuW7XY7y{LG_B=^R+#Edy%gnsv-HDYNZ~azp^m6y^uJX_&(zATs zJ*CQlnXI>8e5sxMZw`a>m%rcuv_^oHdri3sL~T4o4m5Du*DJ;yQ-_$lZ(1~k~s>EidV#MtiXWM=cZvci&-mr;}F&a-OQcdJzT{S~qOg`q6 zcPN1r(+^oV9BX7KV`s5{G&vXs$8!iVL^tS&lh}a?7xOsejI#)KWVFdM`#*S|G*IPp z*w`jN31!2Y9ry8o)QU-Le2j1A+nCt5#<)>`)Q2$ll&9r#2yxSlz{_i;LjR597q?t~ ztD;jvovXR>tfZ zG1p81Lx1a_>_ifMf(8}}P_qwFGlW3~zwqTw_n)BPnAffvG0|Ya-g^9G89AbjNvS!u zgs4WPnEVzd;Vc^Nf`;SnDW@`Y8s zDs$r{n@;+KG;;JQe|VwNHli?CT<22AoP(!KvGRUxmNcn5=TjpTjPA?Pnu3!iAxkFx zjyblAdE{~;S#z6a%LWIIUUA(Vu`)U6IpOAod*_->B0?)vDr~i=o2JpOzu-d;$Yo;n zf%wb$BTi|``prL_8b8G*v{`;1gb(Gzl1Z+Yk>{Q?3#&)y9ZZM6n~Xa=m1QQ|=Q8jI zcv8^l$G{jW8U@pGB)#!2K|0H2v$@hjp%a^mWPn7l0TI@~Q)Dgz>{g8&v>bK+RLmIm zm)zZuzLeL-@_u^wS&bMdmWz`Hnv3($lr9wr{g0=45s98Q`6TukZPEG2Ze}tRaL>j0 zBO!{j>3tqY81f}o5__h_{fLQ}QBvzFV?ZvanaTy&q$0cPOuM5r$F7TV#F!)dfP(Jp z&05=cF2YO>wDmUf<_Wv*oFMyRe&lakl%dLgAeD8ndBC?wB`$BP0XooF=cdTeQGqHo zQIqILTDeg61BY--c9XkFQ0O0Fd_fkV)kj`#I`LK1Ulv6+uv_rhqOJ=cJxD{(9D($} z3EZAJ^#q|GK3c2=#)L1}<9TV%V=t^U0`z7GBUoZpKpof__r$_1F318bxjM>trx|?^T5r}~| z{IQ8GU?6+;^AbKA#Ii*=>`C0s;Je1I2F07x5stTObSq2Goyd$(1nJ`wIhlimMtcTj z$9nb|{UGOsm-FB9|PCtM5WduYMKSmx6$g- z-I0ennfCnXaU#P~q&DQ(lLo!s9(U9X!Zu;Fs&# zfid}f7Opx~e2``25@h41@%|V%4Ab$++5$%OQX84;%TYn<`#{@1UBfsLe|F%<=80r@ z0ra)0QI)tiYs^a#n9NyGKSaDfeko`zuiV1?iW--w!{k|BA!C1^ZwF*>^fGPl<#8II z^U6<*fi;EF={5#-Yv8ySMu1X$EXmR9xxern`%-(4Q~jEUd)h>3_Q2EjFDB@dX*aSk z8Dw!)QQ};=$4&Ua4Eio|bPNfeM@zR1SgN%o%H)%waw4;a)IYB0nW@e>b$}|d+!%8~ zEB0-lXHDF2`}^nJ>I|a@Df;g`_(aE&);*v5&9AgKCzu!yQw@X{G_O3EZ;uxCYst|Z zsYNs;gc*EyP#r(yQAdfrGwqr z{|}drYrF(h`0P|u@;UyXU2@s8r|;g3nBXu<1t{|>NDKSOKQ@K33_iryN=*r_44%I`Ow=c{xAESy{-kVF0HW-b_{(N!|j{|=;(3IgK?c3isXZ$5vq;*_-!iID1-gj-O5)+An6t9I4hmK?ndT0%j zBp0G#BwwXXN=7gSwN0uDmm7hOnpA~JYuXrpQE|1Q4-fCu2w!RsaJ;+V;g$)7HnOl^ z3+7Mg-pIRHp;ROb*#bK!9n?~I&e6K6Nu5jTrsRR-aV)rP71%X ze~N^R?WUlT^)`YGK)a-DVwIGf^!Z&!$-7b#UDHi>@ zV$wHVZFPgV%PKgbJ0&lwlBVBwT=kZ|yIgcBoy?**Ns=rtW15Ly)`1vvYa5CY-wr@~ zFjUrg*wG{}%a_^&vjTT&yySXFC)yZCsCt%hq>A!E3o!qStM877I{xEtAfkjgvNvVR zijx^K(?C{doG31vyGz+b&MHJCD*Bv(S(a@y6QdnaAXKHEKv+8>_$ zTd{ZO+Wzh9W3CQaOelx_WsB2IzmpA*I%1&zsB|jdz3e7!*5tfY*rY~~zvJCFKI32> z#twZS$IAK!E=PJu*uyQ85DUvY!CC~p5Uz9B=0uMloydN0vAy5|a(V1l8V3!QRrpL( z>z<58(Z63;8SJ=dVN`rtvIzq!);;Ig*av+<&v5I%GDP?N`aMXDdx;wrz!Xo@49@iW zDkxT?Hh(|n9mfghF4*FE9iT2ql?4on+7s%ius6gHNTr5v6gu6R9YYYGxoi?AEV4mIpo2q&}%UBJACD1xl zGj*781ygE5yH-ys&r`RWR-482nfoifxb&&$!Xj!pfk$pkASvmLJ9vz7m#$cG)h0FC z_pL5C z-+8_iUP7tV=<_Fy<~o3n^D(^5;NbdNyl>~R(?P&2Nu^}W&X1#M4%A){o!Hn?;;1s? zG-0k8t*wi*W6MbD+9H>Q!-pkjc$M&AOgWB+U8Fq(FUq+ggvm976jGP8ZDjK3t6|RP zX3B~QF}14HL}4Ol3LkCw(r6RZv(x{woMbG92L^rBGnJ(0BOhM%d%94c5pa_7k55t@ za!)0ne3HW2(&4$(o8XU?t%V7UHe-2<4b1BOeu^Ux>#->>S+wI~zZs1&PY&<;hEBVt zi!gZnFhu^b40*v-D=6Yvtmh(0|DJe!RF4-Z|IblH?WvTL7if85bD^AkhBS!z*fPVw zxA({!XlWD;TE6AySbb$U_hw$#$aJ@o$qH!z$|c-a&oVL^NW4*j${xpl(C8GPCs~-G7-z#`WBK-ET-fJU3gc!+eRhgnp%) zl0$?5>`q@Lt9)9sUl)iN=)n6`#tZjiCw>@?r&CmqPvU zAM)Z{Z-x|@K20uJcgMm9Mwv`&-gBjecVulzM16gD2_Hv5X_PHoZYbz@&F5WL8f>Xt zmp8bANNw8Ld`C;(A?)50^7Ax}sj`VqJk2*_$5uG-?D3oP(wI;wO?P8iO{=b$@*1h( zh5J@TanD-TZo6u;oh@|>kW|hC&#_vi;e%OW@v8|W+~EdL#F(wO77l>T@a8b2tK;fLt%mS zqvvy6?WFeTo#INUb{NNv|Gnp(?*RU^_YQ@{(Y7_Y~FW=TQ*UIL}Y4Qs5_e zcUPnkPFQ28nIpjR=2woqC*#bdCMgG%BMG<5ER1s|KS2wFbPdBU9~M?#1mmwOLC>K!3%aq)4>07u zN4*RlD#NtnHydgCWk3yLi*xfXz;3oQM1#JE`o`rbc5~xO7zJ3!B)0K6boFzWc`VPI z5-cb|=RS#;s3D~OT{K%FI;3%sFyzGyy9ZDGCybgKxKi!zuvf&lok01pt@+<{gUtiq zkvFevpF&+Qko92hXik6LcBu?H>MTT{7`eR*53;JqUM6szc(0Kh^cyf&{JdTM$-7P6kp!|>QO#I9f94^>7tz$zgmaWQZ z!CiC}OR*Zc!_4mhsmfFCq)2&=S{yToy;5aHIml1AV!VB=YT&w5wi8(AF$G%`iss2s zo5q^_VEt+(*cF3^--yZZBb|bkxN{6{nCkE+D3=PQ8(}|bg?d!E{v2?Pu>RFUhqJ>5Ym@b!6ZP$ulhziA)m7V<& zu;e!DBb0=jWT7{X3o>FO`R>y8eG@KvCKlDl##q*EKl9iAdcooyt~oS?-wx!VxN*l9 zlxZ5BHuT;0VN2!aL;5!E3mby&*s;(h?Mh~(!4s%Af`!}6s;C7YL-JD$TXMBU8HImB)4L=x<&-gHta~o;(YvqgBJ}t# z*p)}h4IR&mSZ<;wBtir1yR@yA&@hQ&Y(RyaECal4Nika&7t}!$cob6 zHWmXzHL6xXB$DDh&g4MhpbS4fKyA2dIu~&-Q}{ACv`uC5?0*4u7?Btb=LqYgaI*V} z8C;AUf0SCyX3s5qwZ0fH7$@U@f1%|x%;-+m6;qr*okG?5kzVc)gXGpga-AeE1)}6a zC-h((Q@j1Pr0c6%ZP5oMOx|M(am8S z$fmR`<7L~KCM>CnUj4P(Ri;lbxb{gI>IMa}O^hJuYDQ9U-NrvJ)IS}Viaf|R&CTcd}U zzEtfpRtk6dHCvTL4M+X$td;1Svv8+3R~22o>sEBOL?;&G4%VmyYpAzOrh~up=&dAy zvQoHlDf3FoN^10UHe8Y4qEjB4j<~|%nnE8L71z(C*fc56$Wr?N`gifm`y}+l*(gbx zrE?PIlGn0LV5gSyr%Jw5H6ZVXLNBA~`q_yv?33y{6I@r2AyoY0EM|c_lZ9S)u&tRl z(}QmLDMlo`VPKPhVR;%Gw^X!Y|DJ1RH`{$vq4ZPzN}SeBr7v z7Z8(fzkR{n*cKr~VDA4Ew9GKg%!lOcXXje(mNl2Ok`JQ$!X>MTyjJKPV4n7+OwQmH zj716_;Tn-6%Gj9`%NMw_?RN5foOGI}UEWF>Iug_C%A_KWC3qmIw|NqF^v06Sy`lXZ z@n%*hHw9tXddelxcTReEn7+<^-X&nTK`N;D`tx<=;p@yI?it?vrMFDscO?+u4sPOrf; zaehHyithvn$_l^(4lLqHVOs0)fm$=r#@Ke%Si2b1$DOs(e@XIz;`kCWe$=nLc zb!&>MZu81QAzZ^3dL75>k;qC8>V@=NjQ;+)w{8^FY<6L%dsvp;BPDv1XuP32G5Sf8 zdW$a$PZPcJQY4s6jYmJ7^duE5di@#TItm_bw>r~7u2*}7*w#UeM{gC%^k z@{{zwE-Tw&-oPx3JLRoy+z!t!LWT46QQb2eKDNWJavtq%&`&yUR%s=%eNZ^@A#com zVN*~Y+fBK+U?giT^e!ETF-W@d!HkJ5U8_af1Tk`Er@=9+-DJ!j{tLk{aP4{=Lu|nh zgmg5~K#c(&RIxK_{1;L6YVXlxWy;;y8EuDZeLh-4LX8jMN>}BCgmt^rk04b6FUxgb z>Yvz$vr82hmagPVvgVu_WvS^kh@r{Ji)o*(GDY5vfqI~$d)RkH!3-xz-`P!O^Ra9y z|DH6Z<`61nk^Aj5bAwOQCM0pT@vBGV!nsNqN4RR|B!z*onK4sXHkHy#X9}vORtYOi zo#D5g_bIoNB_o$!N?3t{ppmWL>2pt!0u$(LsZKIx0y(8x2u>=jC5U^XK0+$I{5xd! z)W9PLA?c232X1sHQCHMhPR|KwgGY^2(<_HzG#j7YX3yj4#{#9bS|OTt!t zdQ#CVWqCn!vsEdN$4w5c zq{zDpb~%#%_?-5nY0?b{9s(|NhzJWiveA(YF1_N;_(^x8^TD!{RE#@%N)-=Ym37O_ zjHoHlREydv@dILw(XUjw3HXCX8CF4p@M$IOM=0$=?^}4FjQXEGti?O4INT)>BDcc1t+wX0=smCfSsc9Ks2%Men39v6%>!DS^^X{5V*<LvDh>2q3>1l`n@lD0;+_o7OD7VO*<^mYf8N@udQNJAHT7@} zGbr5*c>|+Qdqa8O;mXRnV#@PjjjxD&gx=2!RBQu}P~sn^0$C;y48K9&xj3!gfMN>X zeg3ikEj-BJH`Ln-%)POrxo5vVRz|-D=1**K8U8nvU)ELutV3D-d>5W#V0HHG9U>tt znM+poJzfy2F#fvyCttZhqeWj0a#1h6rMeD(@r+Qs^+oPyDdrRUWA1lJ5_%hk5--3I z*R?uPyz5Hrja}GmEEI}=#OHrK4jm1)Bud_r%smoob9fC$|25kr+84&GbSkG`xu!YB zKfRbSCSGAx(72p&8=Z5Q)gUaZw0xq{xQBVJ{^OoyQ`?yScKXQni&szx7Q$&tEt9zm zx*LxfvWTiJU2TsQtFY3Gn(z=M$lfDbZQB5>t8SD$^bvDPtZ@SMcwEc`9?eaYDE?JA zIAnS|H?KFrd*^~kWu-eb;Sw@_&_3QkCU_VAd>6c!$SCm85@^T3v5BNTMQ#Sr!gZUU z_86`rsqUrqvF!)3>Ghx)blVp!LsvIF#h<{y`%zSJOM5dSDK!iF8;#7M;*}M_(pWtk zbr(bH2eei&$&((>5;oFCSp_*{A=63`QcPEzTdtJK_jtsOOto2A#gC<0ZKtnZWtyGN zE|@u`n(#Ub?bM4MpGs1Dywcm2Sm9uPUkv~&e7alDL!#@Ygkz&CSq z?WgV_gJ>6i9`J=OSlpB93l7w*;|hJtZeIIK4}JdD8*lhGrbX4NvEGZbR{j^Z#^DJ; zR*K(AM{HqJ=e!!IL)t)r|7d>tmf9&*;+OqIyFZA-f;Z#me7CF)u&ZC_AQbyJB%EE~xD zK0V4Hx?21);eth{hP&}KiP@RG>CB#hNBZg7G_RGiGkAUL(}SsHpQg?Z1X6pxXNOkP z7USMa)vl8{YzM{o?Om4-fTlE9h5Flq8Hn0a#X%%eM?&)lqNJGAqN%s;#!NV;it9np!o)fKB99g@wPmz*V5;K0%o4g(dBq=_;S?2EKloalkUiEGg*AIL7)o${d%lio5yhsDQ}^eDrP@kKEhySf$YUL` zzzO9j<29C9tAg;Xo0?Xn@CK{2(Mmz75V^0zOjg%#;Q{+M9uyavk_<{4nPi;Sw?mgM z(UI38P=K{w(|CZjcu*AoTgzb!Qbt`uOCCx9>9;6Ih<9+>vD<-&2Wi`l*CgGM%W7OZ zhW-kgl32M=OsC^=Y2FBq(c4Z|adg6PUW5kFjDso!or465z1KeI_;`_yju&?$cyed} z!jaL;st_Dx;F>Ll7L9;v)5t;++hs-BovYU;P%bPK{!mM;@7hl<@#GD=Fr`I*snjvm zd%oPTOFC*3ByyVw0>6B(>47$Wn^D!dVq-m zGkQ1lF=0w-g5XfWFVx{MRnU^up^>f9X2-*my(9L)C?ukTg|S!Km5ta%>QMZt!2TJ!^c zSn<}Y>JxkSmGUoY!U2HbXiBW6*rTf7{F6W03cEE*%TdzUN~BEBP06rPor}DjJ*1jUdyc zs!U~n=QF*5>ts126UZ6%q&~5bwxuuM6JyQawV4fFhc~oJqkVGch5sZc*ZxK@gn50m zRN*Z#x0TBOTBWEunt!(Bnx3Y^!Lp~9|GBtF5ntK)B=L$kpk)LZ5Q_eu*Sywf-NvSM z<2CN}_5RAp__^Sp8}5zO9}JZ>hAD>`m>kBX(a6dlRKnF!*lZ8yI&Ff?;-qTIFEff1 zEO$g~{wt{IjQD5=gty%g=ox@EKRY3#E_9H7&4_<`-GX`gGGRXm9X)PI+yk^TI+mTa zr?umYBtR1ZAyyo9!nYGPtnO6sH>}-~o!;#eTSx7d(@S)g;;E~DA2wu1!FhrVeyK3> z%3ewRcL8+V-=NmdmPGvqqa?_HTJ&n> z_ePf-ALMdEn|zumQi1}KOGIdJdqmG5t6yt0B~c?&2!>qG8?sIzXgv=EY?|xN4q!?= zOdbFl(|8E(9v{}~%H@P3w3__AwL|y3Qh_&)2Qr-=+vbxTKOHL?f97TD2pwfL&jyuJ zCXy4njb=$3la~`x@X+w4J+t1u8!Sp&l7b6-Z}TZ3}_veoVL8OEi zS)Joanjiam^*NXdvg*W46tdE!ZPOPRIqSrdW{Tq$(_ThuJAQeZ1PTb8TZI7r=^n39i#wM>Fy&ST{Py!?dN3z6# z{aI0YSW#*JVXOqRcm(l2=$J_L5Pg_UC08$>-F(2lrxp7&n@d4cT|y7LA+LK2VHAGb zzO5l1x$=4KkHsxU<&hwq@J0BIUk8nY7w9{Y*kuCPvUew?qIXMXzXxd)NE~R z?CIVo+rQpByOw*8mUjn@61bdVmwCcqrh$> zB~z4kNH0dxm+P5D^1z2&N_(JErevUnBQ}OsevFXtDl8G#zS0a-BG*XFo0CHE05@Z3 z-HKjOQMa#jbHXCmB2zj=oZ#*y&G#qS?SDPexXS=9j=pYp+Vy?_ zSSWPw#Q|7Iuw&s2FB5!vR|fCcV6}(6+`$D?ZCV5S2#~aqZ+NW#v=87SZ4!37s<=)Ol8{kF9gYERfd#RWYQRQcm7)3fWz)ejER-;Vx!UETc36vtO5 zjCw-jaY|8E{YHSKClJ~IVv9Db>BDLutv|mr}EJUH>K@8h(B3HE4$(q0@f~ zz`A$!H&Tm@5n3i8d_KmUsxfrK(U;b+Z4_A;k+{MA&p<;%hIOGrJvn@sXYNIZ^Hr+E zKPrmj36+sKxM?o4Z)oi_MwZ536p!ywy(VgMx)+c*_wubmwR{~HZa7gDy1laXso^pK$~$61hEQhpvx7c4&B z;UVk}D}E<#pXjzHBBealZTVi4fN+UKYriq(nCzJXi((QIN;-gHV%P=@liBxh38E|{ z{2|z(KG>mn0*4}bHAK2rL;)Khm5k2EZJB@&Ddr0SQ6WvZ#_MU^*+$A3Sh6WAv z?r>S#mzoy2s&)n37M}takh;p1A)!^whN99g0)(LC}*22na0(%LfJUKbb z`jxCwhyj&?GpvnEwy{dF(7Wb59)HfgxamWzI$W90U0UHZ=e^Pk5XqMvoHs+SO?6>h zo$Jc)Q{ROO(y=3d&!bNL*ETVJF4hmZINPGVv0!vJ`KR6`94bgH~wF$pVMzxw2OQD@QpCZ-kF`o8>Zkb zWh3PCgcOyZi`0IGiwU$!Uurb=da5`ZX=zbf=`c(CYR1*(RvdJ073}X~%5T)4;Ln*J zq=L&Hcc-6ftA?$~?UR6r71nmTZ#$Wd=2cP9S~LEo@NG%OxuBJZ->5#iIjavA9~Pjd zEL}nk4_c*ZzTM1Y@; zNnwED&elP=cNs)|Z;u1}kp!)97wY)7#;oT!9{~7NU-OrHd(lDq*&PHG10mTf%HDdW zkVqF#?f?CJ3i8h;E(UCnFF<=-)hv;jpctG@FA_Uuk^GE)b-i|;8& zxx)ep5;b#a5rte7)mU*&Sp#Rkk{PXelm-lbBIB@GwBdm9n{dBbhiL7IBR+Lv>1nD; z$=CLfJ(!tin_S-4jN8DQkvsBcLfAf`L%8|lHt(LmRejRQ9#I&jT!9~0EEjyw4c>K#QkvZ@CBzE9}8wMV+_ z`1kvql*%ZxzVoE$Mq9e>9&6RWaxg$@DKDb6Ra=VUDx$vp+ROA%UoAiU@@?Cp!ZVkk z>H$zxe4ES%oO60tjmS!6m?GOfFYX)PALyTN)L!2hi2R95qE@Y5VAgbm)B|NiM3$G- z=Wg-AiU#+wgUivT_5A=1ZuX=AR4KOTT+*|9DNKvm4D9Da$$+h6!rk7~f(kZd0eL(H zjJ6gFQ>7Gb*lUg(FA^aJmmx&Hj?R?;gn@+ZbaH`F%|!Cghnv0e)w)LRlx;~Aq)U)* zpc-T#z*T)mm!bFWfK&jNaGABc?&(hV+cK1hfBV;=<@w7SU&nwZ9_o^Cq?IX2oWNCZ zvu~MwEfWTh(k*PImF0JW=8aiF!H8QianrT5ia}7w^3H?FAeU(_a6$v275eBN% zz)Q=;Q%v_(riS8~r$0>;^Q*XF0)fbwzT{r@xWRtQ?C<{TluRysxzWHBsR{-!xtgm! z2F_6keuQq@yi>zZ02W`0T zhOGapy>x1C`;2<1#oO#anE;{^GXDr=oJ$1{YJUR z56-KN#hlVGA}2o2H;Q8%sq%3ft&-AhF@&I*fpNnBdHKnptU4Z;T&eYCn4RV_ZW8M^ zy9kGL9iJ-nqTUpQP4kx1`gHM(6e#9GRq3O$0kEk_WW=t{e$nw$k(r4aY%#$ax(=ei3@s>C5gv2e(I4m2jGiL4h z9JXW)oqLKj^fczkT$57;=J52VC+H1#dn1eUcS^*8Okof!x*D!D6FO#H)gN_1l6@+C4d8d!#eY6@ETBk37MB zgK)6}+ydD^EoO*276<-(X{e@~%Qq@c(bDM3IC0}K<`27fGL{)7tH&vfs5&*JZ-@H4 z^c5&oEUc&B1Id)D;>TWpn8k%nS(QYyDgyyCCH(9TST|+awNUko%<+JY3oPR<+ ztk`~s^a1$kA7%`DUaA-xV|*{KRIXO$q)_Gs+*s+}4Qc4G>5Z1dCVhZf{CROwCX4v@ z&TLk|_#(ZAP)EoRFbW&2@{f?8jr;q7d@NC&7n((Em@!RWQKY7crD45cN&rCV^fbkX z&(}l~!l}0OwPaWvbPSU7+2CUF78hn+AA0mT_Phorhat<>wX^4QfAxaoq(OQ~rRNOL z(A?a~{hW9oQc31SN=l;b=HHy+i~Z2|YR6m#h64tMrQJYv6C22Au$SL~l>t-*${l=C z*TCpXcOf4^)eV!H$z$n;uyOJfQkVam*hlGsYP{d8sqPa9XqTPgn&1;-H)J#QAm!=; zz1mS;g-q-ycU?l3BVudqf0OM`wC;ZfA6@O(SThOZ)5p@j7&p2B@oV5Na7b zeCd7-<6ct?QW(}T(D40h9Ii_nzb(s0z@&Q5(R!R*7S|13cV+*$mMT0ZjU)|sJWiPU z+pmij``oo*n=*0maJiBt%DYh8DS-Y3M`>lShrwr_U=Bns!U>bXvUH`bn6?*42p$Gf zP;U??nJB%CzZa(sFgZ0+S2^W#DhnEOMiH*c^HlC7_rYX z@1AmC+4j3M%$sxNvGuL(sxRZ)<{iVLqE(#M#@rC^6r90xO`v?&p!Mz-d3Ga#MVUnN z8Hk!*)jdc##6+tlN7hbFP`{>i?p0QS_(p3wN7t@A5MU{4hnZ#0XlxSTQ``>o6#M%p zLQ~$r-lcT}N$rltwu+@0fBqECRW&Pg$mZ$9AsJW_)jxGFRyPK2q>dB#JRp6a{=WDT zWVwF?S#oxc^^4B~%w=3>WuQOLF|{^DPm337EQK1je;K~J_NMj;vIp;A# zXOX>}1uXf@pYJWZ81;%}I!eKa)b(FRwhC&77>pY`@6^6_YpKwv6O_#Z4XS_1s*LRN z1sOa%@AE2uClumq z-oaUUlgezKS?UPrXG$CdGqlzq-#AIT@hhpvT9WLEomm!3_o=)F3}l3--PdLJLtKf6hJcs)Fn_FLr10Y4tmH&n6A=5 z9a+kBLrZ5L($6G6u-WwW*?abtAT2Aqk<^4Y3nWfXg)zOI?M~+x-;kaemI^lLlu|W< zTQLXfv~ z_IOKe7qI7-J`bLT_R>(MJg^B4ZP$v8w4lETRE`4@utu^!I4Mu6Q>3g!fd4)nrBX_> z4Q(sWnhCIzbj`ggZA2Ems4t$CMV-G0|08es)`V|nnkz}lmT_o_wJbab3z$eUU?Q&_ zNCx-gfl`89vw}l2pK3uK0cvw{Hz3aX(v3>hbvIt>Y{EbQk^``!hv9n{(wss`{uH(lK zx4`#v%wqnLBHTMf^^ zkvey;|J~kQ`!{E7dypildN>pQ>~Iou9sRGjaH96#?$197q?sh!fSpxiyFKD+yY1m- z(Go)b;xw5L(v*P{$~SX%<;cO=#lIsvIBdYdnRj7dz2P$6&cX4RS@Q*mvLLfLxD}#5 z3VSLJhUtEyR0viBZpy4i5214tecs8r&aj+yZY(`#C$feU<1x8*;Vf$LqA?nNYV}5JOw^#rC=;4G-2Bl_7St1eh zm-Zlg&}8}SN<;A{xA~)~)%d)gUUX==CvP$trQmsXQ!pQ!ehU>_^@A+RegG*wpim5b ziljB3oMbH@Si5~R;S+pc>854XZKf(`PtxZPxDC-)VkOr(4eA~ z(yRo@Ih3a|nmzwg-ZUw#Bx(%6ubb#22{L;ZdE`j(Icltd6qRmu59)3#6v)|QOS=o? zjHt|O(toT`iFquX)zwJN6rzg6q{0^8XYbaerk&^0kssVcAS)AZrVGa4v);~^Bo{wG zHkOf8z%b*q zcM3L#N*^WJjVjq@_D<N)P|R3wtu_+DRocT9&3<`B0a=t3ZnjhQl_ahUp!Y56Pt*Y&>UBkI_}KOgYhD<{ez89ga#IDxW( zS|f6^rkMsF@B1?udfICn7AsFbVG;XS1US9{+(YD8fxR~77VK9dn)xBnYSmDkA)gT! zTN;}}F@v`ysgmy_7C(l7GhnQZX>O}5t@ z8&-jBqgY*nk~8vYYHgJEA=@_Qz_zKO3x&eNpsntod#8YHqn;FAeFm1R+>q|zM#bhR zN82z$-`*#0Z0vV=MLSuU&FXq%>tM#TIb#bAx(=(%L{)#u&K!;#(2%9N4nV|KRu5mSHj68A;vBF|L7zy2EwNr!|IM8k#U0TcW_xg#842Hy{<9x+?J(_6)zJ`P%{)>*I~=x z4j$E79Gz2%sc?2!^w#CyGNX0`QHeWK`i!XHC;;!^E(T!SS>?98`t@nytZ~gGYjNe@ z*W+w$Y!d8pVI?5_>_Sd2yrc!6XZxXZEs0)yl;M`W&v(usUSwr#VRCjso;P%!j6+m5 z%Y@<$!_*t>2b9Rq&06w}66Ice_So-hPDevj$?4d)`48^NS6EH}p(zG%{YDyqM>8cS zN!3Cw^x15#Q3eJF?tDNggGLG-5PD-kP=;x`x|+U`M3zCd2cMA+iwC=PzW0>O2Q6!DFNA57f>r$b}3UL1FGYC_GzO| zjWbrl)H}a!z*@9C)Jd+lm4@B#Yo&4jdp8xNdIn5rLrxZwjRpy%(uESOscpS1$5KE< z<}CX8j$U99ANn|yKEY080AUYmSr(ENHJKy9Brf1=VsfeOgt(^NB@tR$fAC^03)WMv zUlVxyxEMK@I+k1VJ% z5^IIRvOREZ@|&S7yQ~l@Yf#5qMn+Ck-3YE8s}qUeF>$e%jProi zIg01*k3FaTQzg=|EN2mB6{1v)e`RzOZ6+P%6M%5i53(Kw%~PdARA$4!iNn8R{+rr` zwOr%oZM=_?A0KeFT1Gn>MGRd|994n6?K-nA{qKvHM~x-nzL$)CZ_K9)P>BwCm1$hT zwA|Hi#d(^X@UJ!)M{JTG)W78l6+yyA@=qnf{DO_~xF!panN1NDA?Ad?N((uW9z#x~ zhi4YxJHCwb0dbWMh^vPzQ&_n=3)M0&onMIhP9C*;vOg!V0Z~1w)FshEH}UEgu-vYb z4ISVP`A#1+{RBA$){zx8-22w$d4W;S3AXF|9M3ddo?D%s9wo1{Lhb`_5VJSwr}Y)x zuEn2FlJLRFB>lEgc*7Yf)jPHQpn+0B6IPM8>g_Af3$#exxc$#@N}7rfBP61(8Q7*v zqx3C*R+jh@z!1{r^w~gmgKuR3W#`4ps@gq)ce)$?>HON#y0i^qWNxQnMnsy;D>;)D=bdNqz#tYdFSuBP)7{ulJZrR@(hi6boui^K>9L0k*t;`3 z0L6q)>+wJYMN49HGo|SUEW^2mO4Cq>D=?>d`qj8 z7y5jtEZRZPbAre#kVDCXpF|yu&+f67D6H}yArX<8Te8uyMM2BW_@~q!C~o+C@dIT( zD9Z?)EHlk%T87P%8-%9re>YY|Pj&}mir?eE$lLFDvxA^3?ACLn{dMD63qe(4AaaCmrs~96 z*k7Wj$76M9+*D?qyu*j-Vtf-R`6QA^5O3wFqacTnWeIdY_7kA(dSsjUo8LJ6IwhE= zYRB5lNsv5!cVrabZew=ODW0T*Hb{n86nJme?`z7W~pgZ(K0$w377@ zf?xb~bp}fZPpt^_FH3QD(g-=|uD9?qx(6IH^4$>=n}+DEzL7oT6DhTghC)uic7*Nh>4V2 zUE_SOw{6~UPv@FN$66=acV==BbRc3^)CB}PPv#dP~mslGjWc=23W%~Fm>?hdUY zfsO0KhykzaMF;&kxwnbi@jR(@f~plY$QQ9ma5o2$(F7P`+x=EDTcLs-P`9j% zU*qhuJDxx<&XV~QP2mxJc(HUuAB^!&$n+sUmfW>3?tWm)mH>JQttWcqf@nJpr@Uvq zyp~r=YM{g?3sxuTqWo#aC6b#)KiO=NB~CuQmIzQw?D5fzKalMZV-H+Y>N=cLnB|^bR;A@FEsm z7g0mOMDXf>npy_oj2BM)sh1+f^icBGU07kmSIG_lu$+$o)}%%#U=SKd3}RT5D0Xf) zGe@~0L`I=eageK|(o2c|lsE)w*=cJaoB3hk571E`B7)A^9%UhDRtyV0K{(wa+u$AO z2(#k<>j)1KL*d6AVZt7+6zi*Rj>Z4j~P&kN*o5cx&|7t=$4*B0DEi66O8+kTFbHsQqFGeO&Q0JpbS z`N`kPzFH?(rHAR~7bG(UBwz}i6OUnPP!M8VD1OPW{n?imsq+2h0qPp@bJ_T|U+ifM z{Dw1C3iJ$BTa!z2=b9ne6fiT}6r8}eQm&D+7Dh&GZ^nPiF5C=2-$RMJ6g3AFHB0+} zS|c-)j$B#wkU>haB?g&g97||?3p>F9up*rME7)3t3cc^%^?iS;>gR{@uyiMtXk$Ld z3e~eR!9;k1B!l{~f^?%z;^DEP10JA7wpAv`RV(w&fN~>yuR`R6xctw(U2)k)U2tS- zcmP0%D{;8X8*Jbk5(F-gWaq(8GA)?B`Lp*G1T(>9>F?|}<|N9i8zs#^z(3$IC=tez0KOvHx19ka`(QEh`(G=y8M` zNzlwmmSp87AFZ25rKe(FR42DIk|_X8#RXSQCM!=%ft-;{p3BJi-D-ab$aVZGQl;4AS(}) z4E1;2$ul^9M$ul`J(F1RN(Brbp{q9jXNG!gt)*~W31=fOgA6$b?~Y>OgQx?sn`RSS zG8}APATWeilU;P!564lq*0_sp z=35X1jiVgGYV$^HoVm{rv*X>7@)Jjxduo?O1my3m8qj(H2%ilUkY|%=>Ol7nsoq4% zE_X@EVPfkW$UkuXAoZ3Zd{Tra=Fami$V$oP_Y!P>Sl*q?2%=(wFUoy-mq+ z#D{0dEU&uG0u9L#F>%PQ)&{Iy+rx<(Go!NP?xxI&s846q5!}Llb1>R@amChMFB;(k zLxY!tp=klvd$z0Wj?(;JO|^^c(Vl8c**muI_nBNw>yOIvMD;^4w;Ym-s2{x@_lQ$0 z_wHR1_50-ltQV#I$OA4$~Slru>WvbP%Ygp%OEgyl2;&E7cP0? zwBsN72|669?ECCdZkKinw84h7v_v`KMyH-M;Kf$h^z}y__D9*Xj$1uIi*!(&U|*BU zlpV?8hze{VQ`ltv=%NfUX$kBT2jKqZgM?4u%(2!M<~nQqnr z{>vTQp0dVFO|@u#oT)mGB7zGH-S%!&$O5=@!dKnCee{^NGcX3Iw-kN*H!|)o`dx7N z%L0?it7%TCzOY0KkB5*ot-I==Upy!G3yGrt1#2@)Z-y z7hSV4WZ6dNEL2F=b*s30VPJ;pJv8AoK2k4e~*fy9X%o( zKaL5<=rQ4#A2WT262ViPXJ;>1ul{lDR*97VIIE!X$iuInZ_~*g+?>!CvGgiRQhhPA zmu6%Qr7kUNkTab?$#803eku`xv3Pmz-XEJF66hlaBDFj?fGsi&cvJze>0qAx)UeDj z`+s-yk1_Ijh>U%!lo9T16GVQr>112y38s~-$g8S{+e^OJ-8e_cnTHf9;nLV|7b4%@ zNy^l*Ff(ot^SqYS8q&{4_|I~rb^Xx{BPyX@#l+7f;tLLZ%M8|5nn-FhPm|43@;^VKGmkFvkYi)Qi2 z;_V|b<}ZmH=FZi+Ztgn`*71{;;D$_4nh&5-ndE!JK~|zT@+Ewm%=ZJLxS4vs&_xlqk6z zI`Jou{rl|yFcz02eFZ5maM>k_b}Z_zxD5GrJS_)W2-^z6UhUeh)xQwcid1Xj`|Ch6 z+GhO?E_QE|F0b35tv)Z;UsSAde~%A|Y7~VaOJl#xzk#i$gKu|S$)Pm5i8j< z?iezR0us{BE>^kBCLG>Q=n*o>4I5eW-NC{)QQZIz{T0jj+g}U|%Ubwf+~n^`-cvH#c_Ox-g-U9tr>Zwp?M^^_XhJ-k6>4(A`hQ;oZ`|`Axo!j zC-3AuV6rBMuRF?#Cw)QoT-nV32Y8u-o%K|yPa(S-)(6|4wmc_lZ_Ya!q?x zg0YsoRfDS@h(SkR8vi7YJ!r!OOf1&^S~ik<+oz};EQN6|y;9|$N%tgcQ5IG(z|@3; zu=(za-t`R~8EbdpKa-AmUvw{UBs28MBR ziFQ7PFR)4&mdpT%fmDSbhAB0R_X}Xf5oZhmKb<_-L=u+Z^zee4D*$I`D8731TTO3d@rj}rzC_lrelWZ*5+)`BMLm0t8nV&@~1HDZ|9KQASSB*Ng
;Jp)$v>5xe8IT>{ zlkWk#enM{a%@#&0Z|=nD9lm_(-?~3abfUxXCL!dX)^GkF>Mh+jE!~ULpy?bYQpVD; zeOuWfFAYVpd|addl);OF2rs)5uwL0c4seDE&ceT{eyG}C4c4-CseI_Lv7W(U|GgR+ zRvrjM7V22fAm+z#He9=c&73DerAwHJ=pKw!p@XlHM@aZ#z37CtzGJDQqL;!6>vq~! zlezFUD|J=(smO^UgQLGx9ijrgELOaE;;J&&?SjsaKICLO*xO!0uiGsv&2~9oM3@%% z)fLYK_kGjjzgkq8`)gcqYN^jw1^7-ov3@YMlhd1ir=%t&>pD2UKf%WqbUk^tHnYN5+qP;>n1YUJPT2!7XPs z`-c-Ld{7bNMPt8Iiugn<+JKI8$>j*OOn@Q4^o<=_7W*!5J%{iy|TBK||@}8mleXC*6 z-kF=fzNhjUObOQAkQ37z<6>EbP3fJm`N-v$H6mqkAI!(~Nz%Knfp>4QbY0u+8r^PF zd?%6Qx9dCFo&Sj1_j91sxJ?B6Yxd)b#(|d#Kq2s&ooojCFq*WoIqP%Z%DQ;H-7Oz` zeNIO1UgIg+*9*QT_!)lIC?VZIThhLNL}K1=vSDE`fe-FI*kQP-*IuS;D7@?~lN>vn>q4PT6JjUD z*J}0chTRwgr-4Rq??q4jUhJw%g~ed+#ZB)nWfc$hvEI9lo)b9fh7Ar02Xr!oWJc)o z)L4)h9=_sorGrUVV2*)-GX4m=SIyU<8_f?~Cx<(Re!p}QIGH+>%KtGwosrR>q87F> z%d={ly~Z7%+HQiAezrkXMT~ofZ*-7e~OICHbfp&4g0XjVSeO1*4R=6DO+;!I@mg<5^;j->Ex z7vTYn{ti0uMk(uv*9d85@naxT{D;*(jQdJ~VgEYmo%PRC=bE9(q9sy{zN_+Afhtz8 zP_Zel*Vs@FCX}2*Z?Hk~tXT3ICN+blOpQ`0WOq;9r7$Fe?TJLO-vQfmhy>Yy`ny9 zwJ>eLm*bRcvB)p$;U5idDe5eX$88;w`55FnHcS>5oB{x_p$ql!oDN*3wd@WIuYw-e zj*Sc&=)j$$I6?t~oRXt%q;bv!dR442_6X)EcJvhDb6?g2dl%Zq+MktwOyrfqh+ZR}-PibX|h~cOu?Q0z?ndD+5yL+=?nyJpg$a7!1_P z{=(S!iW_c?zH4_Qt^+JDFO7wMlgEW++J9^xAlNgD&oWwK3=AAI^!0bl8yv1e&iY7c zukg%wOUk1|HC&g2fnS~0>evX}5%Ok8hHqDhk@?=Y5q?LjYL}a{CO0bC69)1EwRrl$ zC>(HO^c!0f_Ym4Lj`4an|LWeCuD5iQ=RGxy{lg;N37Qygn~X$w`J;kjdP^(FUy%>H zUj6Nn^Az-pehm66G;oo}FFh}?q_1aK{I-x|4!xvqB3A|>5n-5!I@8a!>}b_wxx60L z4?7l`AOP5Kj3m3G)hDLwdUBs04Tj};1zdlwCUHUH8^)0(D2OL(?Ed#p&OP35mqxau zcWW63NxZD*FpfpJONIykazpp8WQzUUtHNYa2Bty}77kFm!>b3Bs!zcQ_plNym}i%f zC4Eb)8by6428Tb}H&33!6!k$YiJWf-STNJCAUxRxv>?$f#0&3!%KQSH6MZl4O!(as z82G2lKgT$e;A$?G=@P0gEq8BQ*MZG}kvUPCF{$0pgn`p(GhVvttg70v~%dvFUWS#np;awP(M<9RmEHo6*5i7$^=;kk6USO+5mcNL22#zUH%O zd0`@0{A=bnm>ucIAt+r(56|opum^T!o^8puJPMh7gGu34T_;hv-*4}Y%Ltrz=TeTE z2MsFvo?aDwb4so5V<#F@Pn2`Zp>;y={e0>sb#JggM0^&9W08*3*IW0ROnGH**p5Zz zx6}PS!iWFkqM2{lLF!2Y=LX%};LX){#aHo{1p1RG-_MSB@3gC!=S;58I_E%h^0&d! zaY`;A$N@3uXGgpSzXqQLUniU+;sdKwFW>q!@QjLmu?YJYpvB^6&*U6h8>#rj;B zGA-T#0j2NjPr#j|u4+=c2+Ylse*Td8hv}x|43!%^+Ln@E@JXWVKA#4BRkKtI4E4EQ zM|MOdl`PGabmNnReYfR>B(Jp!HY+xNg>A|k!^3_%1;|}i2&Fj^TZ__8nDAk<9cvx)1y)-ZQ&rk5?nM zGL*8CLT|dR26s}xkz#7#?}gf9=VL|KY=!jwV?%`fX>ggFH8H46O&ah*!Lv!=NZ~t< z#o~3|a(`=9GXlEzo89HMK?7Kd5w^zF$TKi#-0obp3eQ{w(p6cFlee*l^PT63YnBjJ z#C%M}?E{tWXl2$}^Yx(o6-V&shT-k2;L*X{|5)k9!%nX&hj^3&;MYG7TlV+hiPNe~ z2$NDm6DR~M)`HqyVvD3D0nGN?t?|tf-V2h64@4})%kC%Gev7Y6FU5M}E~Gy)?06-s zM|7({@d4+_5LE{DlZA)x;eL_@E_uuzLLJNm7g=(`boP}!Zo zds{C?oy!Ps`$SbFEn5Za6`M0m;HoHVk@N%i|D+erhC558lB_c>^%H>5br{J> z;Cjb975P1;YX94u7t5;?dJzGg%Rsief~7+%4xlST?+oq*sMZ2!q3HXH4UjWW?4Aj4 z!uKxL)MSKD|`$|8;=TP!y55 zNU=OK5mS{(9g7P;P?1FgV;2LK%`r#=L25rYjraJiiWp(&i7me2`1}jQt0xO`=sN|w z8U;3mfN%*!<*ta4;WcMx?#gST?)NNGXM75X_k}mxf5~2JNE!&al+GD96YFA`d+Fq* z6^X84*2ZR;XqEtRB>q4NWhec%$7@r;n9K|H3c0?brRCsq!jk$MI|_hPGRa# zYD%f$AC{h5Q7!6@{Tj}awG1GFh_AzI4#>$<7?aYq=u}BTx0)vH$BOkYku8QlBaX5aj=MaKWEyTfsJ#8G-LC|4;Cp@krd%<@ zR3bi;BR%?RRx7foJpvCR*40T|OHn)IqMG)+zMrhrq{3Au1UMq-UVe-R35{O}U3?&( z-{g&FLf~HYoAv>WjqBSTH}QTVJfgrryd#JJ8YGcUorR8d0eK& z^_-A@!09U<)HAb9M+5a~PG4tmnakHfJu}O(|AdTE9P1$sO&6m$kL`5+Rr4ZM}Yl{BX!BZmPZYm6UJZ+Qn1g7y>%1j!vcYo0?_~ z52#KJTqfcS`;C0MQP4X*vzsTyddSD$NVAsteeSkmK#Li-3T7yN_}a2V_*i0Ez-NDv zu}SD+%yxalj|#UZWgbsdqrsAp2TP(o_7$u>1avksX0T)K9FPBHa&p{C18VmgJV=v7 zU0Fk+(-k1~-RlfyOTi~u<0wVQ_orNg;8o9>@ux6HPr+URXFHGEi~6x&JMMVfvD8JR zpF{4YUe-zN2m%2?NgqfgSm$?|y*eV94C_wIZ9HF;_2c$^ zRAJW&?Kx^NF>SLq^zRx&;3Qi~EQ)t&{SB@7cnpe}a7c?Y}us|SB_r9$`q zs{h+;l=^fBOG!bJ+o_?hq!a@J~FuX=RGr?e<>0<3ZI$1@8Lj2!>HlKDMkUCa=uf|O}hkYp0+)>6H9WU+-;+|a~9dX*lL31s$Kp+Fky-DUY@Fs6#D z@1m?TbMM92h`N(*2f+n#9#8el9-X+s#wnJ1wdbz3pAqiGOl*duC-> z2f=TUC{jmSSkr+mD+%>3*?I}o%I|o}V${Uvu(gC^FDLJ*`Deeue&Tt*AlZ^YMoN;3d-)fxzscCggpO23B%EVB4kF%uFSI- zNR8DmdzC>5W!MEJ%!e=Fr2sKlruK7b?sYaovsD~xdP5(4%1zFpD>j0Ej=?!CK{nRtD=!vP@u$KLtbjqLvvLT zsAKt9RW+(|mExy&`TSO3`yyliLZf2Zo&th@6Pfk&y|j(v)1z8=uOciS6xxW3#qJE1 ziozk642Fig!Xbv}ys15w4R`~z0X$phVz^F7*4vp<-l_A$nU-le$c!Z~hI=N}PhD#N z?gUp{6gO*oYgMfjz0^;`U%*&yQ1&8l3Ig;u=i=s=NcMXQ3WVDZQJnLG5p*An=U&lu z6+{1BgO$tI^dD*~JNObKezjb6gxIl@HRt zVAgD<@PJ$Yf}O{U3aCT9S)KJT`-q1z|Hf?IlMC=$^BPM^^a2B~uIZ$69Ip_z1I1cr z(+e-l*nxyV-E2IlGbRJ*Wx*z$1o%IOgB?MXMIYCzw1LRLgd8Emq{RNDqZ;>Ae-GIf zRTK0do~RHJT03gj*iAv5?pc_YCXA)1{Gnu=kEE zmDgjx?;VyooV^-Fn+nHAVk1thXACgU7LQO1^-Oi%^pDsd3s57mc-$ zP;~`PjLQPg3&_W>(0?p>sl`UXP+DTJB{DD2wCa?t*z&~_{UBdKPJV4E!a`tb(eo0A z!3i0QfwE`N;;w{(BN5tRqBy@3A%05nINObWO{*5hbv{-(VraFM?RX1iaQp2~>F=*9 z(Whm@H^>JKI$?iUvV^}q5$F5(6U1EI_@kZs5;tde1zBesEz6AGtK7sGc%AuTzU&DS zi4&YZp$@kgKx60%unFAQGRic)E(GN&Grp@-C64?f>l`pde5wDBd!@#HV_tizA2A~I z3UEO14F`^TPTu))uBpU+bBpMu!&*}T90^Na@C~yt^6mJ68n6TaG@=W$s?J-m+W;B= zidWCPo7TxXu{09!YjMp{BNt-tRmX=|X%?!A^RbItXIR>rd)%w`tO@+XZ^ygJuV4s4 zV*iYF&38S$K*!iV4-QY5yXzsayNdt1;7VM-^(t=c5U|>!obRNT!g|-%54J;fj?xek zNHl?&ZdRXu^Exj&pp%-GmT=6wmH`QU0WrTs%H+1bw9Qo1T;p2C_gsGeDk7IFu+i^X zPX@*I%ln-a9b$Vtw4AGWAg8cPRA*dGu}Nrul1MO1fBRZ=+5V-E4)LBg0Dk#9#<2V& z?BfP3fEtQo6fi6e_b>YQkkj$SL<#sK=O`wfqZ9qZ@XT)a9C&v78pjnJ+m|G{qGG2} zQO_;Mb6d?f(m1mkZM0VTm4K8J9)kY~y)ZvZ!_2;bTzS_E0GT0V9GdVSkSPy<%m~g) zNIcU92>_Yx0LYxhCgBSD(dpU(>JAQRyk!q?=*EyoDev2kEnh7B8#A=>?eQm$qX%k3 zb9o_n^($WkFI^m<2b~vrkgC`($6+Rh575_iGDJxAyfU*AM(!`XuNheZ>M66!`W(C2J)roeR%mEN) z)m|BZIy$a6-L-I9m!PzaMlOKm$ju4`%dy8xRkP}~1k^spCxB>%-8ejL0Zw!yZq+-& z3S|k?JiB!nAUd%0Obyth{xAsoNBk{1zovn=@7Zlb)Vd9pdyXs*eg>TWU5`lm+^8-= zT;qvN6T%=3*u)PurDGdnQ(kY0+Q~@t&v2FR)tQijQqVx0S=Yz^tq(QpC>Yzym z*|M#BrxmLMS~{11>zhgqNEd9o>2qTa(}lZ|FJMP+=!wp+;J6=0GR`Y86%(TAEK`CV z$GaK%-`u;~@R|504YAJUv{o|*;%arHUHB@9{v2OVkv(qeNl=6kswQ22W5DmvZ_IX0Fy<&fG(6&-Y)Z(0t z2mUILsgc7ZAB}@Haa|M48hkB0b$-&^@@LLJ7;YVL?Dx{cFYB`)ud>`)TnBko1<0%X z-}P}R>~LJCk5=lcuN+8X^z@iI{)|~|hNUkF{NXK`Gbj?XTHi`P`eyeP53D^Sdn5MK zWrZEJnJo~0^pZFmx6$iUlc8Mj>o4WgJ%d255XaR>09RjPRZXeNjg75=1^n({Cf>2k zYGKb4f_uOzH>Y&e;v=*d&pS!4&28tbhsQO{A}*G){Sdk>8~cu6D(qUt)lhlwhC>kIhc+Zx{^T_(3$Vo0i9WHTJ9mzk+~uO zAO_uTfJMHfd`HVzxIFUeds+5~;vYA9$Y(OG)*k2{40GhHpDd^Cdd`OOoa~K_*T_!9 zSl6;sz*{CmS;j~7S9tN7lE19$h(#eQ3mtWtj(?0&m#`5gfXoaj`kse8-0w9=Q26&n zjDqcs{J-11oM`fxw%uVNnqr{Fucjq&%@*9HieI)K+)Oz=)r}aBTwdz9QY!q$%3i?R z>A+#ju|5nV7{@U)bxEl}S$As-P4BEelxQ`ooY$ON{0?jvvWr`{kfzJHW1}kUAEYvx&x-a z85U1^*Cj+T{eG1>|E}Q>pa}wG9VuLe1jIOh-+~CH!hn{-r_|&xyrqH|x_|=|PeoHl zn6kl_QIf+gmQc=7arc0U1<#@n9@35_?^6W=1H?OI-RIj9g=s9~#hS+dSVlPWc;r&o z(^+$Id7VcdXd7f(q2m41gEy0L8067PhQQh%tp{{FA_8L=nq(&&O5JtcrS z7WKUvc4;OL&SmrMWerade-5$~A40bCR+<@96f9AgCaRfRYi_>CnHki{U(|>9ntYj6 zJ~P(HlW9O_pC6kj#J;uK&t|L+4?Ug98X#u>-g z*3wxdN%R23(RHwwZL_vZ`L0Jt|{NSp?Q#EB25 zy)EMh@{j{6rGV5t?R^$Z>el($kKASK){25SIU$^y31A~mdm~Lp;OX`w9$17XwG~l$dDid@KeBzO%1Q6E_rusXGjM5?sB(omy-ZiFlbN13Oa!aErB3) zEdQeKhfG^`ZlC8pvX^JhO$|rWC7TtU-!3C#f)1Wp0>QJGrIqTqTSC)$5qLG>`XeC| zS!@YvtO^b|iS8!B)@|Qu8d!TcSV9kNF!3P7{~0X7p1i^GG8P96z>tq5*D#Mtk5{jP zlfgiJ&cTzrJ|hyfyPFjy$uk`Bs`bJ^yp($3prVH^zS=fOHt6hR4*rvn!XLHv9S}{+ zrQ~AIt^o28Tt_s%?>6$;z8z2!n{y`Cm4ws*ThxF`_hIG{#oN*I^L{Z{-|bmX>n*q0 zrb}z4w4rwGdf?s}-B=G$mdi4~`^=;|BTv4a7HySCPKIlBlV^5!2%X*F7juD}q8)s+ zyT1Oa_fmnYFuin0Eo(jnB>~?;;1>c~A7?Lsn!y%QO#%ID7v_ODsomly>Z3ILS$aTc zL^`;%Sh(&~+@ELC>|6JG1Jvl1Q@_uDp3>e5)+xeYZ#}9S!ut$WOXZ;(_xnkUqc~tK zwdRoSeS9~A=CCImt9EiX$3uGQ)a)VPh?Tl*cr6~NeldKYSa>~W`+i1%M|}o(&N@eh zW#Kj50>=glqxiRd2jlsw&b~9#xy^YV&gLO5$SOAedb{=*T0Z*zM@6odc zvt+Vn(z%R_m)3EjUU(0sNHWPW?{DCtYJ{a)!1Gk z-I{}p2t(O8&?(F5zVOnIe}%b!^~{O%lSBvHN$bHaYHhXBiNMBI>q1T9@&LFy$GY_o zsSo_KH#ZRack1B#areg-h@7GvE4G5<%SkTkGxaH#8<{?&TsHh6`h4|o-Ag{XKQ7=- zpq=FNGj)Ze_un?dz_o{pRn_BRNML>2S=`9cEj2zI#@AOed;9E#nvXwY|C+~RmqbtI zMyMD0wy7Usko%j_P@D=WntCVu%dW9CUpnZ^51^Qg;IwTOZxJ<)BV*vlHVJP6JyhmBnxU-@lI5q z)s5;L)B44Ox;Zi2*A9HRRqqAOgzLs@jWKB4a+YGWNa0X)t~w382@H*bj2{+m9lo(* zApPW(;Ict>MUKKFSJJuB1hP!+&kV%V0QNs914=bQ_a6l4psT7wH+NEArzH36 zeKzDp-5^s6OPcQVKAGL>d~okxLsHbe>kKf1JiLM>5HVY7oA}iwU3$|<59GtxKx6LxhI!XIJR9g8^P18Yf zss!Wl?jQa>s-6q_IYPO)_oUcx2oY~Te=fn^A*#0AL?cB}<0f0%XJRPX;tLh|HXyO< zQ|+wP-2{rGjrUf#Yw0PR>_N)cg&2oD^ke3WEGt~S-UA$JxRg=jUmHLeW&WQqs$sHr z&ba|7GIxNw0VkW^TE6y29w?)hUya59>|)#-^`lXIJLtFbnOlXR!r#j3NQH?nuB+if z46Z}&OUY+xq!wcv^fRlYPVP&Y{;7G{R<7W(<$^RXmYh02y#iaH03mI&-Z?eqtfD@k zlbkE+^RrZoUfcAG066rpeGoExQTACEBJ;7Rf1=b>mzP${dgCE3b?QHaEF2rFZL85$@)sNZCB&nc)lb9U%HFdP4+-R zw~yVrlWc^R=vDl5ey$55B3siaa9TF7r~e}ieF1W*6j3mdbZ@Q0@Vm?1OCT80zFPJT z3LpD^r`?Q}Q?3J16F>fP5mqhHFc*+iX%CZf@Azlsyxua$54g(Hr$|`rKn}v5uHKY; z?2pn#RXyH;q(}^52Wr7x1E9trH%$lW$HMGTXQozYWw_-_%CQ|#$Job!?7`0BXVAR{ zQ?E~SbL-Wv(;eILYDTZNRn|Ea+tX`XPWd2R&(Gg%kVoHYE3}vf*9|=EY$a;%&{Ut} zH49Cc3k_FPg?0b~#X1XoU1?5VaTkN*R(pt(ghAa^SoOU6&VeeZ&*E#UQk8^%aOl>O zz@TB=R@*-a=7csS>gzq2+pUJeSiL_v3Q5R+iRl=s=^pZ4h3Q;u(KheokyHp5H6XyX zJ%&kIF1-@HFOD;J-$IBjt$_1m582oW{A^kQWOmvc@DmkJUG7x`Si9_te^-myQ;YH0 zAy&TMHww^3;^V96_K{?&Vl72N+#jf-{^Zzj-Rb~_UE1Xq8vWI%Ed0F>b}3F5qr;

_{(LFaPftv&?gGm2;A_BGe9gWk#Crky}_2<4Rbk`pJ!+E{gbdo>~PdY#%AcU z%-`o9Z>DLa%DaZ1+}voHPD9>?6zG!*S4P zv;N!s^uK)%>whbsLJ#g$m`|P`;j(xGMtmm&YSNZRNLoz_2^t~+-1aWOZQb&_$Hsh~ z(OBovv8PDS-o=OMUKBQAr?S-42~uZ$?GuD!SBHzuHZWPQy_BKnwp2w0UOkKyGT8hn2W$v?X_?wL-d@oda7`4 zq4+2Rdnv#Ww>IzHwb-Rd7=b4_WCikQ?1@p3NAG%RZ34I*v`XcHp+-R+qD-u=!akQt zCVhN^94s?cBa+3hCBSD`lHl`7y%ji8 z)MRh7yaV!XIFfv2le+(SlL0WNGzO#KKL+E(;6ed$jUF9`i>FC$8#c}l-RGw%ql$s- zy5sbf{2xkJy!E*4_Q53rzqJe;5=JJrFIPp|Jg>~r!T4pFe5^O8rd6Of;dX*^E3&Go zdtNVJimA5>zEf<{p(&$C7YfQPjuH^O>-%P658r#=!~ptygliexw+AB0$G{VG9WTIM z21b{?#xcPG_aMN_HPiWVFS9vcoIvK|ry^Ll?$i;+`YWgCx$hc2q~n~QI@26@iOCQt z{!LN*VJy?|zV@#Ef!jU92T_2sfB?#Z(kKCQU-G&JgACXr0cC+mW3f`u|Kr49xO-fW zR@E`3rdbi(JZD5Vp7&I*AOKtuKW(4L!}Ef2M6c?7C>$C7BX=uXn`bmFMALD;>ss*b z8X%s0Wf_0C*q>3UVvhF!Yaw!N3N61^tyaYI-8Xz&jZd(qxUBr$Bg1QUvEdK<( zHAzlWNZhoVMz~0?zNlzHe}+<);=17MY3!f04Z;=`d(8q*;2HfZ0w!N#H)kly(jMjE zU>YolBOo;O03RBVQJkLdhdIsdeuge9v5DW2_6TVaa_@eH<#DeNAzLHGS>toLvK;TE zYQuzDamob$1us-u-BXmVtcPy`pmkFCSY>GvKin(4%jsHS4ImZG|DT2oExN$0gk*;};7Slz7j{#YkuFC4{A~L_%j%zD_+x+tu0fhz-zSLf zk@ey|Ud+E@>hIuTTavn-!dJ{^PY2{sLFg$05I9^EU#5%kam*3%`gION%gGw392t)h z`wOBpIE3Ai*yMNow?98bMg!afeVM)dhxkQ=@+!X|jwegD!uBlZx^YO&E9vI2U`Qfg zQYz}ZvC$2*@qG&(jQN$oe8wJtnZty1Xp)C`u0+ClgmxG-TWcLi9vpz=As_p75bj`F z{oKV8T$t=Pb$b0h)zgmE=Q$2||0|o+#q;)sC{E{|{iQolExVD-UEs# zt^ZX-wb^;o_{36(OT4@~s5*)~E9S5g>Xq}@VP%CwNfc}KiqjLTzo72;b2Rf%z@e+) z0nz3+uzm+Ds&Auo+B8W?4SZ5be~SCH9Ygv|&hApS;)mz$sgyyy{@&3yo^9nhJiZ{t zS9yZ|EZ{>^1lD;wFzsc|66&2cW1Sbm``H5gT>r39hjk935`R_1H_(L5UWWxK1n|lPDMSxhU($h=LeKzA;KUCA z%&QzZ4Bg5O9;I@JDkMh=5FWHOG1k$92W=dW6KwkoIedYOzSBFkP;YkOj(4NuCs^T2!#CMt|3@GBQ!!|_SUb%v{u>KqZHU= zf{jEQ1)wQ3v211uhQ$np2hGj^>7e0Zr?pCjf>VXeK2H}lBYTrm|5AmRcfB`*kSz8#xsG<>qe{sel`;fP^2y+t#iV1&ZrdU!%K0 z;M%U70)awc--7M020sX>U3eSR>xFb`mSLzZ+-lGk4x8*7Acnpf2Y2NGDA8d`n@Y>k z+wqGqd~y;nwmAN7+kC6>GV46hIEXf8cw;~|M9f^Kf>;;9xd@PD*}0EjgD8IRq84V; zX5cz8;`L^GWv>Z7am)zfXwU7c8Zf_ z|HnIT$sOBGoI<^Vt%^M+45ES$ud+w}ElX|zEh;piyfb~_DF(17z}6ci;VU*k&BZ-6 zeAnUQ^pT~cAD+xpho@=w)jjU1OrrDZHtm| zjg$t*Lpu}UMjALB=H5P#Tz(zn!!dOq3qjaU}mJ0l-ex%8G_&@9*ya>D@G-iy=D=0UqiU>sM zJTV$t?RWt$-&}DmwtatWFT0h$sOJwW;LYJPw`qMA&QRdSX>9la2$C{{{*yG&`na#@ z=L`&@Kz=ZiHi+_{+&44^BFV3)!*um4>hCdmP^*tfHE|a7IJ4!kh>8q2O-Alc#d$n} z4x2Pl=w6NSu*YIBX}8Oq|v5GJU5m)riq#`n5~FbmGq^&!N%ydw{!LPplWHj8( z2Vw)z!*A)f)^cEea{p?Ny^oSU+U{%>)O!I?NsB!3^H+^kBJu9AM2r2IwJzIV@7^h3l>QM3rT z`M#`u#7@pWaW>rKO|rDbIo^YeG1C6286X#|DIlwa86I3gv;)fsTH*Eo`}!l`K>LUx z)8bn2ZRKg_pkp7IGIw)B#yvHf6pQ*snEb$gVVjbM38(Y%{`<^kZwX6Ip2HPCC_3A= zb9pO6z{ug;)N_eeG@lySp-4QR+S5|_*m_0JrC!$ox~IY5tkOUo_KTmH$y_;S4H~s5 zC&IxMdhcu^>MIGP^D{}0uAAQ5(m>(8Oxmi?O^FN6IVnks@^>o!B1P}zJF!!b+c>4S zp;))})WUWVOR5ZYjPo(JViBC5F`$_AND)y?I|N#vG%Wh0d4%xa)|LinPy}aCaKw3j zVEfW+mDaJcY@t+ca}I4<1l+%k4II2ACwXa?I=wABxDNK^bz32mfzv@DqR`5rbqQPW zN;bMa5f3*#r<_Gn>~3&{+e??sndQuxFKs9vo_Siu3Lh8%zgAxfjHu=(8WlemDe>a5 zGaa(vVGR?T7K{sbsT{|39hgDeK%M0W5utBlf6M!bL~?Q1e}`vc!{lguKY#pw6qWHniU zkjrQ4)!!A|vSr%xrl(@i-X)Q~h@FYYi>qDH%J#b{;#2LWY8)*f%0Chk&y7+{n(JP# z--|2`@rs)>Uls>z2f?`q5P}h@-|g#NgjattAyNG*>Dr(nTu|Hh!}X2XK(%P9gkJ%W+cY!% z0`b;&S5n6s^+W!Nt>Wyif(+V}Cp}y8 zcBT=cbrQ&ileu~b5#WZU1)bJHgZ0RXLTRb71^(wCxPFXB4VK+)T5LYb*bBf65jm`k zQ3KzUY^9G1Pks1N`&UT5vbi@at-PB}BB~{LHP%6U`gMu1#r;#WNrkH=eUkBp2WM)J z(I4Ff>4~IbeAQB|c51H0-~!*&dUrzHb=s6<74}YDj#9PitgkdoV|@qg;ruLO6Ys#% zl{yjWX$fl9wJ(>}H%68_A9C3y@5Z$MyA~=#ov60Uz^7o5vNhk?$*YBLnwEP2Fv%9R zIz4%FT|SA1GlU!^6odd;qkHH{5ef()IGL?&iyfMZNLiACapHM3^a8TK z26K=4i#b1)ls%1DY?9+q7_{wMb(0D?n`j42#ngHHH`Rct7?60qw4?%b#;BZ+O6!Mx z$%P>#+G*cwp><4t^4E(2c|&Ag85Zv;0$l7qFklJ6>|))4W_hM<&@0BkO!Ypv9>@&Z z``k-q>0S8yruU(Sk95>Uf2knOPw}z_oh>(6t2+G)#*7w*0R=U~Mz6G*4tmsBpC*U| z=z=v6ME-{^SOEgO${Mt29{)r>m<-KsH~vQt?xV4k!qbx`PJX_brd?p6!4rM8)(qnt zh$5551~#VuWffu;*Qp%MAz@33%_{fB(neda8%t#@5#F^0f&4+)zl}!hV^0u4{y?~vHv=|+KndAkz5%ZPF!)Iu2RnbF)i3h+tu$?ML!r1NC&pkid{XW(PSmIy z`a!97^|i2+_lewNp$$(pXcTJ4wyXZ$4bpT}7 zAB!q}>h-^>wFu5;aEsUl>EGaFPX(l%NB&J}zcaGz|P-8Si7wLQuom|>5Pm;xJ@(}%SEAE)rC z@f)~(mDcmUoyHkw4wm0Q+VQeYHivgYWBtnM>gA}mGwmJgk&)Xf>GHo*NwohJVO6$= z&%8esr2DozmRP54`QlP>T2n9RIo&q7wVHQH*ii185ET?L#-v-T*Zx1M-aDS^_x}TK zX^{~bnH|T>Jd|X8l4E4gtjt4cn58%lC3|)b;UG#z$|fVuDf=8FS=l59;ba^foBKNY z{_gv6|I;6ze0n?Ax!$kq^?I)B3iZQ^qQ6IBFBoEsoq;YQA~u^Q`0KBJyWy*pyz|J( zUG9o+DRR4{WWz}0J-e@c?9x!G+j&2`N=KRcqzpcr3lALDqeITF+F{`Ha7>;bN;{G9GCSqR zBfT)LPZ2u6�o}_$?dadE{3lAJ8k@WQQS!pqEvLu?aL~EDQ4T)eTh$6&(2UWkAsB zc=YM*39Tde ztG@F&gBvk!&c}{9Uz~Nno>AZ_i`*4FR?g9x4o(VJk0*z6oYs&bfZzi4In~;qtQ}wF z(=om<5Z8T(tgcZ~xRNf@&_}O;vB$spd{g8EQaku0 z)Yh-zr_@Tu1r~z(KQ!|8D@TUOABDKO!}ck7D4`I!ENTYOep?wi3EL0moaL76m)`gO z^f0OhAqt_VNsnXZ2E=-6h=zpXNzz5 z4pr03;}(at!m*MY7xV@Q4#7pGKu7rv2@9oH8juT5k&wH`G7NUSk>Pkoug9FSnO?Hw z7lk&gk&W8vcFO)yE7#%|WgS0oyu$%2kKU98=sx!Fc~b`vjxvUnar+_rr^4;$#vVLj zFyx)$`BK&2O)KcIimenb^mOf8Fiao+qOjER&I8~!M402GcBO4Fa_Z)vS5K1l$@y)8 zUF?Rv#F5c1m4{ySx9@D5 zDR2cx+cmEmR-L(8=@2KU=qn4>OtiIEeo(@??Dty9s|(R*i@i^?$sozo+7=xtD#)<; zu8NPQVF0svROC!uE58fVOF48s#||C3p26<3poz|aKcLt7&&4)R%Z2TNY6NxWoS~0X zoE+D`Cp7M<>gTh?G&{GGBl*5E`UF>`NXEO#I0d3O%-no!>`6y zosaHjbXdw;9OgN7mHOMf0TczjN+9E@#0G&*<=~g-k1KZ^fLQw|qm`!3(N|@qv_ypL zhqev=WwMlg5kZ?)OyBHVCNS zZ6U+G1Q)FLdul2SnYb0niZb~7$m8r>#4vqTAv4Qqqx$mLvF} zB(CNl16g3wux}Cp%L;H7c{2Ud^%v7NpGGQI(%_KXL3UmG?=gh(GW0l zPkCE-q!?$737v(y0flu>frZxt1MHWSo(xZLihwkMFRv2H!@1fxANzff<_~~B-;|f& zgM)5@J>@CLg3R~`d5|b?)$-u$Z+lJMB%3l@{iF>r_bv>GN9k2dZ}Hpz*$iz>WXse! z8k9-S@fh6KjHzyOgi2|sZ%&Fp}{P)=bH zhaE)yphOqvPvrShGXQgezOxC+ycn#0W3ACG4s;c8_bA)jBtR6~wQe*#N)Q}5h(5S3 ztMqWIxw+^z3Eb419N5Bx{pOBnq`&xF{>9yTkNFB^Zt8i=lAPYm~ zb#_TcRmkJ*tT(2wJkBismGT7d?+NU4+&%?$KP~CU>m`WfeTjtt)09#7NQVPELNt4?wSN?DidJOL!6!C-#TUA^Wq4U{<8iZ zU6pYf<`vN|@qz27#90}Sr1xnV*Pe(Knv>coamW0y5_H zr3uW`$ep|32m!eqafVaCD>e1MiKDe@KoPX(^RkuewgUFH&js(^oDh-F2Y+)O87>NRI>x*U1*0T|5ifVpJ8RuB)nVk@BCC7ix^~oag`vtM`fe z*35~(42rh{_ipd_&l=%zabVog#GLwXD}`4Fy%Y>4zjI;~8OP4xQZL`kd-+yIas^hF zi5{=_FtwA*qbjI}qINM^lb-iJod);aD{V#$4(vqyO2`{Ges$+WX5fK@mhg#8O{sP? zcm04j!Z2=^6san*NmU4YtU-Hefh0m}P^M>qKKf3kVEBN3BY~IE8sHQ5@rrSc1fn<_ z+T}QMC}ZnY;m?wVKQrc>FVdD!u9`nYtGypU5;{gJ&2y5Y-F!*Sd;n;>?}DvDtM z!3lth9D*dgD335pz~KxIcR?vwh7H>LQ+8XxBXw8oEmTzzZe1m3|UZ#JLa8H2ieL8^_D&%*2gA70b^ydiXM3b6y!9 zbmBB&mmI3#D*HumBdNL_Sec(p*M#O%D_qKJrdWL4qmHQIcURlNAG?&1uLmPRYR->Z z$6>}Hzjs4G2?51rGO7wA?DeC2s>|Zml+7&m`eX5f1 zZuy`S56FyYl>$3z$+ZXxId+@jfrdC6&YcYbO2x3`f?uC;{FXumFK$hK@A?IkB{!6o zifcCCyw~HgmZ6-L#%72h9gd&qhcs@BjWWR?2EsP;>(+ zkrDz+o?)lgBj!qHKj6rYH{xgAdBgVq=!rNVv?cD~%IJ9F)x_oAGbt&pY{=2m?D&FZ zKwb%(4teO>7DKROpU}gC9{MAD#>Zwcgva7X0+8Ch9;yV(dISVBF33&)cNh2Cs&d&% z#?&>1JLc=kk)t=?U_)cWPAbxUR^zFZp+Y)GoF|~VjR@?em!ibPq4E=NwY{UFbumi> zawL-m=5HVon}>x8mM5bk^e})$fer~0^HOj%pI|^{_Zl%W^4=F}#Tb1@nn+hJqPXm2 z_$-UB6oJh`og8ZCV}JU2kOC>?)xJtyDk~%Jo@_=il|EfN_sCg#NHLn@DU{lD>ULDR zYEW*gHrWLYSUVQvzr@SIv|8~}4i6iZmKMHu4H0}3A%nW^IdclN#2k5Q1h_m6J2g0X zITAP54K4_6&+l8}f4FMp>*23mkF@OZcn&Kc_@;*~Lkd=I1-~)HE)f=q8$Mz_6nRru z#75cIFtBd51BpZLJMsp>M=1jz#oYDbs^1{4VsIVnO1CBrW~e(0~8&%PjsirK9GkwJW8Q8)q6e0_J(S1NlOv;ZW|d_N>Hn4gw7v zf2|vfuk6mB`)YbRQ$Az}4EliniBP_eDbb3#> zEPu8gO1P{>%!=p2*C3DUoMN!Ad*nTRhMR_Gn#Yt3uGe@!8_OnSe+02QQ2;NuRkX^% zDca8(w!*@OUWn2ojS%@r@>oggDc!h^BrUkG1!d`@%Vtk+dVjPMEC5Jh(Y^ft<LJLhew=u)dQlHKRR@Jl=K<)FOGuo2$y1}T3DuJN zaKGTPO^An|UJn;fPuPahZO|;Y=^3jky_IC;%zPVQxS(Vqtt@IkXH_(6 zgipGx&$_#}u7+$#)=A0Ch0N>Ngcl}dMqdat0)-zsizzpTY zgxNA%6cT=Gu6zy-&2#XI`@OKh2A-3{nTqUSOhbB=F1)UOyGcs9H&T>HPI>N;ov6nf zK9gZhcZo0WzE5#QvVSwh(p5wA&+iYdY?Ep4K67Nw^iA170&t*RSbMa(q7dt1QFx@l z@Z*JZlZVNNKBw*NwEzS0srAROv#&-x2*m_RSjc)w&1Q}GGkk!h30g(@5!9KiKtYQQjHy2Y*-Kb+{Ofknyi%ayxO)yl)^Tmt#N zDtKtw3~}!aeD@rKq6X=>03ijOlbl8SY0U{)eAk?JL=BxgmEdIEF0BA^G z+1TDnUiE;rD>Ao*RdtGD&K(jRJ8^A*=t!^8&Ty@P9YF?x{f&iv{cHWQ_{!$|IsE@U z>U{_O)y>nwnk~O*>`m3Uc}yVPlk+aZe5K-H^uK|x2BDGYC;wRhTOn%swMw8pJM@jF zYjK#wdVSt;Z$sxvajQ|x=z>b#QqD5_8Q7%_(0VZ_coz#1GEQs}!O*d|?!hn@F$x+m z24^2>7K7_-x`=BMz9^uuRA`gwsEA}>jfcV|g;wH^%e_xGDc3ec&XphtCgql_RL5H^ z5JD*KG-cV6gG(z;3>NpTbfB35Yq|bLCBx<;QA}0J4KLI%AQ!?UM? zqwpL5d<_|wGH-5XWbG8UnZZKw62TItM5z#IDPNp?^6AWn{ciCebNNachC-L!o;ig{ z%w{pVts+Po5)BF}VT(1zD$sVR$MGm$W5i&A-0<8+{u_D7&!+`e)rVPT2#{q)Dnrz~ zLrPltLfab^AJfK=C?5BbLuj5+MEbW=@@1fws_1NX*H{_pP=-W-{jPKE^VtMX*yBr$ z9KO&Rd1Svtm~m?SDG|)>Tj|LD=$G-Q|Ek1BiO@!nvy@-gqYPEdZ~PQ>i;5WtY)+|S ztH~ksv-w>+1sIq@2!UdRNF1?w zF%oU)BTkX5!PPg@kOD};`we+KX#L&)wf)mkZQO``R#_iQSQsKdCC2PTR>oN*o?CPm1UD!&h8~^oteT_-L z6w$EY79a!c3GGyGMu(x>Y%co|BdoMz$aa)Ay2wpZ!S4^F{r=@z*slNk z{b68qVRpQh#KTc*hoyHfwpXZq_l5*cJ6KXjr-Ou5C*+nSk#b#=ktuBA*3N)sS)$U< zDSfFwNQWN1dfWvY6#olk8I?B&+{)ctJ>3-10!ynol49s8b+LLNdq}Vo2!!7;f<9a` zRpH^ftY;V0`D+)b);Ws2c&b^OF(dnnQpAj+ZYuC}t4bUb#I13#nmo#0K{E9DEZ-hq z`b-Rs5i<0(Rkubx^fN;^^*{Z2S0~BT(zcPK3bA>TqY>0o055HVdRjKhiO(hQ!2^%M zGvxvr({5gOIxKgC^STkHz9pezz7Y_x+inBA((7h5-wm*grXbEKNfu*Hc)ih`^aP}H z3!*2tWD6)S_f#r{+hj`5bG7W-MTP1DEN9_dk>G~Y^XR5)a53GO$y8_yuy~&=>ipJ! z_t*Co|C?_H4$DwbSMvgxo|7jr0||{}5Czy7{EX&|UYKiyVf-_u7rLBnIcGVF!Dot;om`jqwsHdYlO#^1^B{P#nAS8XLr109 z{6=GB0^VS`-1k9dkL|0eg)p3CrOOFhkR*Eoi=CYDxPM_7IaV!M_D*y21xt0$erROO zp1l5<(Q<(+sB_w{v9Gh+W)AEFbBpI#UH#_Ih59|_t9G_k^4Zgc?i}Usez5;HJ+*UMAknTx;m4exL2uHV(cxCuKN?TKh^%#4z!?mM!{Fe zDAMkS+zBk`VE>iIpYSlM4jZHv*g=-``W0*y2}wIpVTK#bGW$ny0Gb2tdW8Ss)$9z{ zD7_=9vFW)$Gi6H3B|L$vo?4E5@*EtA&GZSOIz@W_!LkTXk8b{6_y}qAgst<$k4(9G zj%K8WLMTv-vT!idM~)mEw0*?+Z&hh@UT%Y`Cs`#zzIS!QceM+x?Q@LhP7jSXeEjAs zSlS*vZPi#0;m%mn19Jw$3sXEqg`YZLzSdrKPrLyTASXg>Q*)8Dvn9sk8)8U{V%+); zmuFF0Bw^adYaxC1*HZtl5t0m=*OTRoxP_$Xx4R0K=Pwy_d!AX5Jc{q8TL#5~ne{oC z;Lmsg&X5@y0ysm3pES`o;)0vZ$D=t*gRmE38^awnK=B^3lk+9nT@HF_NjBe}U^@CXdrow^)nB4T5($K&4M<2Pv|b`-dXC@6`aq-Oe@9)8kdshE5d zQR59LA_$Ugi|4DtAw?t(^WEnBde>}mgZ4lO$F7~)#+wywZqyrMp|d0mAs_*k)gELBI{L_iTlU z=YBoFkkKR&$2G-o3i$eLL9qX%gld*b8k1A)&m0H&#p#$H4(U#S@y{mbR2E)x@=F%ob@989= z^!Vij+tT^iUt1Yyh2H$QZguHq20v1I{qFk`%%xgw{7a9!Nf&qx>OJR{C3W!Ka0=Ln zjI0<#!DJT#*y~(nf;Th1qXAc`bW#(vfsG(~)%Th|3rDSOI4B{KQY~W{!5fcU`Opkl z>^sI!=07HD>`AjSH$jX87iGA-+-Q#SiVMJ)_sDLR%271gwV-An(64r>DDCC!FETrcq^UAW7~e+25P#G5)_#i^suWqG1$w57V|z% zwJvQiEx2}ytbZ7O5;b~L>3?lS=0%Qg<9&tPdX_Tav&fmSJO|vD5eXjE5*-5#&osFR zM@!Zys0a_8c8}a~JaVgZJc-m6^J@WlZ?-v4(P!G`d;qK9=5tnKLpc`!n6)UF&S)y(z!t2@8=kVO2FV;AY(EE~uU0M`tT0%gVxkYlF_EK4A7g=Sd-u6cDDECvPb`g}yv6@mdaJJ7is()0zfKnNJ0%C>N*E5i|dcun) zb)H9&r|em%dU3u6a9WaG4NdHCig>=d-}XC=ws8O6-V%lW7l0lThowihfoAFO6h1$g zc2y}*IEs86kd>Bo+D!CO%Gyx{{fGn;-Ic78AVX_{1m)Ol)Q{=X^p58^e0aIhRBw9J z|NqB5DYBUBQ(malRK!B@(I^+vJ3`xy?0 zCmr8d6E!o9VTM=Mjqh4!M%9Jw$&~m{{-!eGbB&iX-Td-k6PS@S&Z<+QPhzy=Odceb zab0uRLYyq}Lh55x+IF)eRA;HV3IUIs{({a1`&TsyMB4=FDIPzi^{$2X(k_2l>ZafF z=x`4ds{tXEVsf&ArbME+sE^3#IP=s0S{{WzUXfu?P`NH_Uu_07^_S5&TVIJ5yCCd^0|N z$Z-!M?`BP~Cg$w{QA=a=H`HWv%0 ze0AV?tSG+5U?p_q zs!o_Nf4QIz<&G$R^UEcjBxj|V>pB=cqJkbqQQ&TEz&1!w>5BJCsEJP8X&8mO9Snrh;>ygZ+A0aGzo%~Ix_{+eJ4Z60Vyl`qT{&6~yW#rHwU-DG2eEm`&hfM; z49J4!1KKY5n1<~qH3BHyr+$U#nF^nWTDgY*oOJ9TWw_in=XN7?0~h436Qp6e;B4yV z_xD7J>WOWjRddTV7{bK{3eUa)ZPZ&2*Z=s1JLjY?CAc120|Sej`+xQcuJQ7j$G2y$ z{{RDvTZ=3I(RS?~9`;(hRQk6buU6?@PjjR7HFz;yal&Yp-AW! zPq)HAB=}snV9clv#wx+6L(H~Yp{O_F3B#>=M>lMvw~@6J8o$-8TkdhR(z=l|@fk{D zuX2b*DPJ_fg*Zxws$oeB5aW>&!V3`<c9fKxqNVkfw;Orga!@)icwupf^ zZ^;-PN?$LIXmiUuMjx+n?F)1(>GTBcJUTcA(>ZAix|}Y71X9@Y6&I~f4HNx z4+m&}T>xWJbqqUU<!`TNHGW zr(I#dinfe$zFVh_HOr;}zS{H92w$jRZca>!)Oxrdd_L%H2dG`;Wc7+CZmGu%;Qh@v z_niD5zwgjatJd9XfKveaB(RnBCNOjU6$SJjL$uz*s*KiW+a^gUV2Xv>;}Cv|S`<)5 zo0%U3wkNw6Q38n?7uKW8}eY!4L0kf#YC#zSaClfA%f^m2L)2XQl z5^3*YN=z`Gv)EMov*1(~u&nrwn76V5Z3k5(5aGq!3dmIX|B%|U8B~99IFnIPXQEd^sLd?&Opg46#&$P2$O4cbom_B*yeq<4@3PMf~cwBa7l7> zQ7rSndQm)z4B1XGpD_GEj`qbPtO}Ms5TvpW8AoP-d+H|v!ze)?y$}@;_s3>l1K^Pf zF88RiN<1cq*jnVQzj!tedf+{T^)vvO1m_(DUCtSDhKytfTza_CEdT=NuO}}JE!Y^L z@BBAWe>=p^zJdlhyudfp0q->ya=dP1pa9*@R&x|p7%(YjpMHEhiS~wZ!!v*){{Ifr zV}BB26P2dWiPD^qaAc#G9OqY~a#7-lxL|jRmmEr0|O`n{y4!h&8vByxA277WUo%tPAC$`xKSWvR=TMp?h zu!Z%bBoQ3`a9oqaTIMXIqKL)y-PjQO_qYO;0jPY{2P?yMc zrN0XqxiT>!ftgQMPEd(fBQJ%Hz|nUcz*p2{H=*T_sk|PCQ{@=s5Ht~m9o+$AdeP{& zL+C;E6jky`38)rPF^4|@FcmcGH>#PkF#;)yA+@QN#HTrK1qY*Gyc_%Vh@oJV_q_Jk zCuy>5IUwB+;lk7CUcc) z%M7?@e=aEjRmIiD@5wr@T%Tv**o=1j6ObmwJKvn$K*29TW}s0WDd1U?K??I7-D zd^pIuJ(tWpff=*0CELYlqnTKJ!AvsU7(4c0t3;6BuB#LYW|HsWjgKxjfvj8K6sFc@ zDURQpUsl*uS(NA_Wa70|0k|1pS*Wfmk!GR1p{F|BiLVH{Tvoxe4(+Er3hG$9A^=z2 zOnnY+fKYA&lSzSDK~e8!pQ%3j%B@rgO|3a233nIsz5=)FdIz5NNmLHLK@L+n982mW zVTX)q2i+HuaPgt*^9u85J-TGfX6p+sqyCGT$@04MJLK6jQtFrHmWG^HW3Mw+edTcT zl?~|lxb!HQMpXoU7!Kp0^eNqvbKZRG&mxEs>AaYum-=FX)h*EeLCC;szy zKz(0z3&Zo33;sJD0kX7sJHa7JzV{{BC^et!mJf`+N0|`DfxM`D6_A;sdpl;TijDqP zUY|lEIGUa=bG<7Dk_1eEZiL5^8$bk|Bnf;If_YD3JPUQa6G&g6nJ+hgUT>luAGEYg zas+gO?l(xwT;QyQ%V=Owc>vBRjWbR!+Za`^S)z8wFh?C4pMI7=al;6TRCJr;tA)N)9bU4*3V`XkQ^XShm@X_Ki%Ec6Hh$7>*|50*#OdXY zZlIvAD|)|Jj4eA5njwVvI)}PAh4HGMGkpHh<-Ao`bo?g{y15OLnZNlRp1)Y5l@{q} z4Pig{L}C<4BG3ZT{3Z}qZ?HeayaoR^`qxzbBpwbAmD{!?JFo@eQbb%)`4w{=G>Qb0 z9HMMr(LCL9nuy*`XSk-fVVuxVOJlF`+yjRqJt7UF1hxj-tt8U;JY>UZG|C@lSZc()taSY7s-+R0rMh4I?zrokCbW4;SkAzlG9aM=>rIdI-$@(Ex9(Xj$_pf=8;< zU??&`_|%Sy^_T;XRGs@ZgvQk;3ZKpM?U>^Sukl=I#6~07U8TOD(!QACzd-@&)M=~C zjq+Xf!`28aBm~1y?dNO)#H5Nq!ZH#;-xpKloxbOnp zw>tpLkTwDQ-2vbg5+=sXG(r_YBSs9F0V*>c@Aq5Q7_v5|%10hZqvEh=+8kN2nZnDC znfgb9Xslk6Yfy%`(9d7ftIs#*`SL6yHr2OGp=a|>n`p6$7L( zbCB&&6tH~dU31>#3aJgW5H91k;E4LzR$$y?%T>G=CF@b+-TwMh4aGNZ2DxVq$BK1U z-H4V}p7FRxL(|$oQ{_!&jcEk%1xzlA@wK9r%amu?6N+)PA%|hxt_Gu!Rqk4*DDdex zTcA8Pl6SBfAhPP@Dj?@RbV#L0YeI{i?j^!pgk|hY9<+@n))aNjIsi4>DyR;3!z{oA zqPTj;0Zbrno5vL95PY&Ot}?vhK17N>6Sn-~&ncDbPgb%!UaFjglLqNP^Q8`)5qh?f z6v-R-PC8oam8JI|z*CcC8a@lR>c;_FJtJvkUI6qbq-UpIEq(hgj|oh^F|rZ(b|A0q zj5YG?xB#*#t%y{$SrodY_lip|JlHlXpe%mxOM4(|xXpRD|9bHp-Wp~>0X+OW$Fd`C zVDV$}XQ1Z$5p#fG$Zd<6+p+pyw0jqj-JKzGpnD!3O~G5(Q4^E9WKlM6=D@3UHO>Fe z0Cs57i-x1Uu5s87bGIsqxZ$Ysz9z`1Rb(V(M^293JZ5&X-_5`;oQom$?km@!uE0eR zn+Is%F%f1E=MT{A6=K#g@bb!OuL{||%Fzdg9gN=Ff8gExA$aFwG+`0G-SFr#F;@$U z(espr5CIGzRP%frC_h3{pzUnWUlvAGbHz00Ta8BDr)prAl z@(qC@*pvGTkB*^d;y3!0m2RhM?Xj-iBi@HE)p?zE=te1$mZuCvr`u@Q=&H&7o}%cmOQCk zt7{vO>a+Pf$!uaKYa29u=rjF!E1hgL#wdNXO4P1KtZLqNrNX<%8tcG%0%3ZyHQ{57 z2#!ThMuVv!3b3l@Bod-%cm~Xe2ZLUe z9UaWI7N0C{CzYE5T)lo$FlTQ^exWFNETvGOcly$8)y;?>b08Sg+XW6$?*LEHXWN?TwtibbwNo31)G5Ov_w_$(p{={;Mgf~|_v+}P-256qR%PM7 z^{DNV4}`3uJswjRQ_al`$&C57u2>l|c0}!u&2KW@D*Pjd=0s3#9-xG8pup!6FQcE2 zW+9p)Voh=hC+6vW_0egNfeTwaeN_YR!1l`}{Frn0g~IXleZctr1`_`%=E~p@{Y-a7 zeKt%%&Tz-aqFg4wj$k=D%mA@6PdPb6xXL|^BDej{^a$r*^GhC(-h zdK0$PyK01{WF9A?>CY~kfBut`8lxoM>*?Gd+#PU}30x*3p9i|ZnUOmpv>}I?HT94x z0ac!B$W&8RYxVDwRM0`I)7*dIA~Xz~<9G1P2*QNZ1Tk?G)!|{HDaAONz-kH)K_W%p z{wYyO2KTs?v2@>yqGFh9nE?)d>Tlh>*}h4j?x>}o1c)cE@M$1L?41N-HZS$hvSNrw zu^?bb`W+w6vRsXUHa)$unPqeR_^I^MtLZ{b9bPFfdc#BKOUaagph{3&?pJ3eS_x%EFrayK04Ms%pPafv3QQNg09FK!#fLPlo#c2@o?|Ps0WW zRi%7UuIbDG`&Km!Y6#>5uTfd_Xs?VWe6i&t#Kzl@4J*HDJ2+l1(&Rd>HJAaWj85eN z;J${y<>DP^QrbA~%70S$5*#iLAdePtrC6Q*V*I)RH{WKHU7Vh|k+sJWYiZR^tNd!A!YVmyCYz^owRinw->ri| zgIU44_)Mu*L?-#iY{mG#W?bAo(0iRO9kbkA=pbw7KtO;L^H=+9LmQ!lx@#$f(Sw8C z*5n}E_bmr?y$)^SH7od~u%bJTm+sVVy+8`~iaOs3uEWH*IJ8R9)te_*3nf(5rqpp( zL0Alo+j570rFL+AE&kjcdG)$6|C?*Aq`yyu!I!@s&8x(bKznzBbcH>JwF-2Z<5Tuw zt)(Wm5WfWSsIX1HN9${+XcEz`Z54_XJH9okzQTxyP#0CzR{)kNpQlI zmFY}-@W*WO#QxsI{tlO)%_oAg{^ux(TVl7twc*VVByYRdcuU^4`(mm$zB3@+riZPo zr!N0?p4YRpCi}Zw)f=xI*}MEfOAo7}2jrT`u&#Jx--*$O-GeES0@CqC6Jd{K_|KNj zrmM_Hu}MGVkRF&gDSMxaM>xc+*^JV8zu(7oULUx{J!wFalXqaJIdevPn zH@>G5c1H3Z6|wj=`8>!3ODDLfIx2nt2n?<%FC7i~=yRP9TwDyTw%Agu9-GTck5@)L z7i?z zln;ca z=nLRT7WdW)SMO^{f0&ifqWw?+Ia4A#L$+;_VswhQF8?4qVuv!CB8yP1 zjG5uRx?b&JlVz5!f*ju#i3Ir6+9ChKmIoHifVOBcysBZJtR7wmy8yzGo}s7qEl$19 zCrJ=_4d`_*X(i3o2ByX_Dqo>4#m>2O>D&Behr71FhnPBeG<*l?vJXx##(m4sXfoH* zbdZjA$puofNQi>Np&};Jp}Y0lcn{7m`?v!L6pd0I!d=bh&9@Gr(McQ8Cmf3HlbhWo zHB_9Ucrp@wP*5!c3$NnNyZsG)UP4!-I_#RGPzk*mB>^24@JqrLdoqqUrQwZ2O;4d4 z(8oniz)O1B0?ZxiAcP`fVqiD|&RzN;-ZCAskyLbRv3bNIqV(PDrHvjCMD3-s*qO$A z3hfjcJ^J2NBSP2PBY-?|o&1_oDzuRlPWCG;vQ(wMLTcHwaQkPzLU!eims(C<+Az_G za-zc^tw?1QFToA#`(*9d9Ul_SDYgZiV&X9QwG>`PTywM3ZPMl!M``+@?w)6BkHGDl zeJR)7t>(#&Vpod9%T(9h_`}A16^p|3xkt#}*d;fE*MbmwRMcCCudsk~~fb@80oxfL9ZwhU=m4`~j*C(Xxtl zz_D060%eZBT0T>qk4yejZ9(Sm?rjWDo?g!aW3bCzMH(|~3+xhT+;}MMf>8)7!cdK- zKpc9|Pj9&Xo2LwfM}p%-l)@0J;;O~=FYV3@SCS{KyWS8^2GE2*nvea$R?W>lo(C)+ zfC6zx9``1lOML<(3WHP0cq6smUYa4}@CkD?5$}ni-Y&p2-uxfa_`fHJ!ybbP(U=6< zR`cj%LkYZ7EJL70;lcj!9GnD)yMNg)f16Bi#Nc>VMUWUpAm=seS^-d5JRgdFS$yUV z{vIfHHd#oOn;Rt=AfX`E#KQ1oy5T$#7~a~*#xp*D?CiB@<9x^9ob#WI{L{O58f!YE z;jZ$!Y+~k&!+oGFa^?5}TJjq24W8f;rdAAy?UNr}qhrq-~8lmzE?B?OW>7Uu814w*Nc%nIy zMn^JEW#s;*dxhNYGcw5F+Zm0wN%Z85dSCn^A11Wv`fv@Uu?!GJGgpp!fGCQ}{Wyd_ ztXST&1kl*bfVf`^3n##E_?n9wB^6AQFv5~gWXkk|g6jI4MfWxEbErxzcGoN}{Ak6T zV3+MNeF=^xzre*4tzAV)=>Y9tDXwv7ToS|>X83El_@Y6}5(+#1S)@%*8}C^d>rlZG zvwgaSRen32#G3L~vC~(B<~6}`Jlqso)6qIgFtW7-=O1G+HQrZeKbsNBlwUo(JC zjQM^596IMBNXvQOLyR@0d$Qctoc?UP#jstSX(LM>s3B(uF6(&PZWNadikyFIedplQ zxt01PUzJ9#*gC=9Bm8F~<=J0Ze8Vt1aPBY06@Bj@#Q2CSe6jn;N5M<{xNygc>&eDw zO2np%LxElasUYCL?cbE|6%-*f{(I=!oI!c8J;fxc`FR&KdS$yn%-fXo1;T%GJHy(> z6cHRlJZQIEcD^?>W`=ZKl6bC?9;#2>xE+Qfw|pY$GmaGBgxDX|~Gs zs2LL>!kshAqUW5M#EMxiqda6$-UF9U5@Y5XRi`Ux#AI(?MtcuO?A(Jndadm&wU)I< z_9IM~Mi*}A&7All;*lRFGx*G@`+2(F0pqt5N2M{`B^bRbcP8;|&MGs1!ua2(SgQ}~ z`eVukk=-v(gcb2MOs@<3-BV<9mwr*t$FVczJ1)Yu*Qb^d2d0^~S2v3M0=}5`yRKux z+Bb&=Hcf1*M;oT^SC8_8nX}lu0!wl54Wm5usn&mIWVsd{{YJXem2cv>NKP3qx(_yX z4g6E$Ca7S=ywW@-vl$ZAY>m}8L)h>6-&5zg)?@|H^##!TVOjPSt3t4*?Wi{L#g06s z&P41F)VyMBYU5pfY#MCf^%m#Yz`z{db4at(Xbk|s)^X8qiaVMe@H+m%`jZQd9lo@J zw=vhL?pl*vA8`FHlO+b+g$Of`tF-@BagCY?wa9%uajY5tOd$_qk6B#c8aw63Fh-Mw zE}9+yiNGIxQtL8FHm)0mdb3EM919sSZHHP2@22FmLSwxye34cy%9V8(JUynU<1FJD zmn|zXF5(u`?K_QX8~rd8?U+b3L^7N~-pV2*F50{u1O%>&w3N=qdd%WYI3pi%M7l58 zih3+Ujc6zTWz_QRQ@uWFUC6u-gVC-M~M#E!jz`p-%$o{a@|Bmms-Fi)TPS;D&=GEh!v zeT&C4u7|c;#2=jp#_4riq$vOk9wATQfd*lp%(0e7{p^vq>XUi0usnNYd zwmUe6rVipfheRo7$pDlu^Z<{$peSH9S@PYB_xYH!lG8h{;M%g)=+bpbE4q(gxITt^dzS9Rx{|(Q#m;=vwkY7GW{ZCVX){Wgq9{Qug6R_X2XYp`GcryWyPeL zP&U3$p4*|1U1$r4nOs<4u&;jjnycNPL8uW*F=xhC7iM=n8>brqr$(ihnQQcN;h2D0 z4*phVsL%%KNLCh->%!jtGps6fUJ79HANk4~jetDnN|0bZ1;*e4i%ZcGUQ5nAzDxq* zf2&Lr`Bz`+U3}MmGoo&l{asO>`$`DN;=KXqv+dn{ocED1FLVyQQeNz{SrAH))F=ug zG|IYr>{!FmVpVtJ=eFD#tG4Le!O?+-B#&l@!qPLqJIgk7CDzb`{emA_uW7%Anu9VT z-Tl(oLg)iD>aOImVveQUrM#=Lh6TldR<$#H3aqJ<>wRA@3Wj&3LKNUdmnpJ#9v@cy zC(B~d@4f+KJ|^I`TfmB!X-wUJ(y$R4=vADjUEhD7k{>h+|V_|ADaJi^*N5;h*)T4>YS8jK-dY^_?o_^t`$^XO27>T&f~;=oer zz>aS8`2b$f^N<&ee*toYN9mIRof_E%l-SMR4MmfGjYDs0OWx}A{T>V`gggcMr~nQ> zRFm^qi5gg|2(;I{u)xOPO^6O|^?Yf=273*y2B?D05*|+?W%!GIT4wPE9?<~rc9DTq zVk-gn4j3xiEndAC1remJ=cjhvvklI>vwyz#z)%k!$(m;ruaZdZaOF zS~%RM`vr_>WzXHOx>Y85Fb02eM@%nyM|!=bnUt zmBPdbskUHl*n8WOcR6buHlY@uw~px8Y;uCT)6NsWEuZt_<`D*J%fdPJFf<{=OdDFu zsk+TRy>!D*K?nM^c{y_Z!b`-!uFBydFlpN567_%T@bmB`pbn?k7LySXMKFi%l-#KBb1&f)_2>)M0u^(D34`GdfnmAs(6m3TGO>bhajR&UqAR-Q-D>fa5u z{oUlRfveN;;BVCew`YR(Ha!lgtp|I%*9P~%zuu*`x7+*mU@i~*5R=;ebg|mOrgYHW z%-4X`t$4M)1qJYTtzRw9eccQCivIKM%Jaj03f$&;l+ z8Ud-n7F`UjK*5qZGdrHaoVFdovDHRy*j#f>gE7Ho`ZBzYQzJN;6prSf(bc~b3+b@u zNnHOuw)VP@pi+v@It{d^V{XC?A)}@T_n+~oK7fpBR7*90*P@j6T3l5QD+4FUkTZ=V!>IG^1}aR=a>r#@#_ zgl^!v>E`E1P>zn}@lQ_Fle#$S3*TeHj`uG*2OTGGp^CQV3!Q|g-zIKp~0n_5@9@b>inkGjc z=pjyEJ^klt#{9g26GMW8)@!&@a1$_ivEL`eC4bHU0FB?)ufDc5`_{gpgeJyo8>>tdxN7hql+PrwravyqP;%A8HBI6~B zKX;XT70!8LkTSSlxyoKzu)$sks$dqRRv1)4wkW-OD(klF5CDpX5;B;#I13eix`B2< z9G0|hTLHM}0JxMJF0$jPlhWNwu#s!R(h`LV2Czc6Abf%pU!q^#ld0AJ40IPt^Po|B zd}ZAJZ^4F2U&rb8_`i?-+55&-hhBXlKL~h!Dh@qAYAjhBZnzaV-`{TVjT@8r?twA6 z2XI)RDUq=(#a9iV2+mGm&CPkgmI7gwBjv5TUee&3MSd-)6|qjFa;uH0jJztH3YLuL zfg7Wjvdtw$~E!>9W6-LJH@v!;&)zHMfnYBWY)9X^Kp{*o-eqUD_}HW?9&|}N@Jt# zd%M)6M&6t6h1-?xpF%cxW^xNK6WhS+z%B3rfcsm^$SCaf1T6fU-&qi9)5a(w5IHF% zl63ODhd2IYvC+H})spFbr?=Lt19l)@a4@CM_~h)gWJrURKF4##_0d=DvxShP*3)fXa;WSe&km^1ddh%oyDl+9PNMrI}57c*(x`B7uFY z`RsEkRNQ88YX@1jf8c|9gO7|ny~aHqcjdz1$Nzv%DtYm7MmhcVGFgNG$+jlH2f&Gd zwky+si#?j0t%tU-u*nc@Yr1-X*#9W}v-G1F@a+%~joJ8T>uuw+P^lH|Zhap{uWo}J zkacoEKzP(RnmWhlGA0C9U7wPc+8H2d>|X)qnGNFOvycu^`WfRsAMZy0O( z91s9psaECO7C`qJYZDUX z&#$ws3t{PZzH&ZYDE&&Rgnb`TZMbS^W>G2C*3t6V%z}5dUTM2?T>q)XNMZeI6}y4_ zs`Me=_c8sC&?tjVdEu#F_*Lnqpcn?Ah&Qm)A544rhC^BJglgbfvJ!q*;k;!zZ4#BG zrsmGJ=+r(QwZM*2MIZk+XCX`r43WOSO?$S%cXZ9 zQ!iexlOqil1KO*ZynwD&S8dDz98YN|qLNpoy-ypsg~tGCu7rn!&cU2xi$GPFZ3&nM zeK1Wk-CPK!YurS=P}3)&JBT$j0*B7a$$8Lwcashe8ov*S($#)Wtd}KJ*cgO){hnv| zH`f>-A>F|>I^~zVO=c_iz>t;0SW3aW(0}{FzpeM|GoLjrAA4Fn5CEK$)-&ayvx%_x z<5-p4fwW)80=E69$p0KV5C5TQo^uQP9Sx%m!Y4E8={O|K7BLLvRR{<48XulK ze*|q~p*x2Mc|{lZ6i2y<3^3^p5+a z4jmU~!sIZ}cFUxiW`c@QrMLIpFTJwHKMp@rYY}Q%NXpOkhrda`1nDV_o-#mw=Eb+X z9W&XpjC5)64%9TqP1=d5}1v?o`!y^V!XHzGPAWEBr^#e_K8+qqKeF+X&E)k>M$-U-RTB z*6V|$K=LH|P@6vBR7<@u2{-r~_5m0E6L8bY3$g9}{^ z!Ne9$Z-Srd}%sP!FT6|ccn{i4?q+rx-xp_ z>X;7=bHtHLyqn@FFNFt$8DBfi(s;k57Ksbmgrrh(d!z1UDs%aLmht5tQFM+nr% zQ-Y1SCounic6o*t@e$y79J?!$aC+f*^s(e;YuNSUf|jLNPwm%?^Ako^Cp<*s)W873Yzc_o#^g~2mjNBRK11Jb*z42U57zx$!Es4 zXFuB;d5HorR=gN6R11$hR$yiTxH%$z7;prH#Xnspk(h~HEsZJtXKzpd`_+mW}ktp|!K)G_2jBHm7>)2Kg1o(#SOLwDs$t{Lqal9u1JiF)T z3=@Hvr7z&e45`Wjv+pUP7_S92D^)Yz=gs@xnqdG9SPhomFD8vyZZdwq{H!e|JPK2i zY+@xq@EJ9P5J@=13~n1>Ig}N>|vA&ouCsy*`9&er!QE zX)~cB^HcxBlI-~>QV1$LRp2ArZ_uPYq61_JXxEhky?)y|kX2+&D%S9KwacMD6P)S9 z^Ke-8-#G{B3QtRN@ZK{y^hvdlF$+Dx*=Qt$Ei6kzS~Q!R>pOQ>tTjuy0Hb2fw;4sx zKfn7Dt}Deez7CEN_Kk^#J@2n(Us7*ElKP(sJ^^awJ>NgwyibS-bl8`OuoaL%t`Ioc zk>T}GN+r}2v*%5U@r*7+m?dyfVw?%FojRO`XQy)Rib^Q2;9zIJZO!B4w*ms)r4vns zEaa`|wfmF{!cz<4cOvGR&PT)k5J~=8R3C2;F>8PvRS9lTwo07wTTqGoI3IQ~Xqo(m zhW4?*WdhImt{w%=Ysi;e73m2_D!?g#uH46YBu*}(-1Bw?Vz%tYAVd$D(Mw6himGL| zuM>MMH-*Lc`d@*kIZffNJduk>tqYkg3sAdscZw7RV`5uo=Go7){KJA#H+)aog>@ZU zU^JFd+^ihu3GYu7baTT;-`7~u@6rQwiYMO{mz}*i zdaCwf&)C(>s&&xd5yl#2A*s2NWrbr~G9$5h3xNeYf73wm$C=be;! zG-2WOIRLLlJiF_Mi8YTDy#zmP>wd%}i%Q(qU0P(+SH{GK&onW}J|Kj-Cl%nCg+F1s z8fDvh*>8rCTMK_8;Oz|P&n7sXk36)Mwz~}?^-b$tTnJg?QI%JlHZCyOaRXh@d z>Q8Y%SEP=owDK`1t*EFrS?X=PjQHRqE+VM`YiZS@Ujpg7VU38dmCOKhN!x=hHv4cr z$%uHnETi%EPDr-&wKWlU>EOM-un&*Yz1nDafC!=F=?X{G>fN*iiANXU6|4JnJXNYS zw|I)%s~bS#p_{vaWzkv1YY-nGK!f1EUF7ubU2?GSOby9X*{xA3U4EiHwantgN9oJ) zgtfm96>{n(e|vKgn~erO!0)GlSxyy55jTJ38igI+R2pkN1UjQG)F}N_pJQpqfMyBW z<*F;wcKFq`2=Kp{Qf7Cq7-9eJ40WLXHgI$0u77O!WPfg`h}!pxZWt}`KL{8PP&Ifs zpRtrBI^JY1fwD1}C&`HZo`D3jDZD)!I~8{wK}RQKxT-b-FPnA{?3_iP(E&*_qaoq@ z&LV%LJi?Co4?d7x7H`^6-2%R#26n@IO0JXLRP&Ec?G!i19wGV{1advDO)_g83}bTz zG5k5M^lCJ;*7%~sBR|#v(`^32QE>rVMW;QTO(pr-qs-2smhUPkTHh*GYS8Ov%Y*UYH$VWrQJTnEeAmb9P znAkTnU9&Patpll6^BS`Jmn?0dgFo75`=UmX4EnTM}3Q9mg zsu)>}-MUS`VUR1ydIOT_b}cr4EWwz?2_YVJ916W%?Nlw>4x@DA4Yv{AmwGMik5x`q zz{GAX4=<`WA-<4qg(15sf9SxhA{Yp8Y8=Y`*d(a8D28FO>h~Oo#IJ?JIZfRl%|17) zL5(YIiG;8F?aCr=KeMEUS^V3X_0b2mW!GgtnO44?@rgqREL3|l5h1Q}_l56WUQ}tp z@O6P)cQkq~3kO1eqXstsB053wuHuj~m6Y_!L2UfYY179eZuFb6P?3bc##KBUs(~QG zK{hh69CP;hKmDbX(iv&9E?lJm*K#XytwHy{3jI`~Ui59oOXRl_1*@1ZJ*OFzQck#g zL#SOc;VjnL=xcZ42i$Y|ML=m3@x_xCvUIf;+-ad}X9a(aSK_2lhtpRD9V`07f41t2#*aQ%(Ug6 z9+3tC(3&B8byL;4LTbmBBN2pFc;eXlnlhGN4I+VQjqAFxe($mHP@Y5`{;r@|~aE$jb z3V&3DY0o|}yYT~AgnsEgW*z%kMHhOF`QE86B{@W=vS;Q_)}#VQ;52_GQd;^n?W_7F zi^{OUv_1%-vvcr0xdzDmu}Ls1QHO0FijJlQyfs_60xpTpyZnS<{y3iloQ+>*`G-Q1 z)OUiw?V7)|8<)NPHB@crJ!P#wjZi)_9d?-aEw3z3tnJ@b?9jQ>!?hO;>g{`i)7L!?Q#r-$g{OR63s`O!S@qC%y`6QrQ(!E9a;t^8s;qrmv`0T8VOJA z5m}w_JL`TsVeT%k_c%$=L3T*MDt=l#IstN^rsD_LPm3rhD+i9nwFv-v(q!`eD+RkX z*YM{($(}?u*)G}xB?Q-qLop97z8_5voN#$Md`+ce?LYZYZ;5lg9FMt$Z=c&%F5%pa zIhg)1;#-E)8n@>zfs2fST<$qmSe^mn4`(mNAGQ;qRhV}GmP5=VqTZN80^m0r1sv}k zweWRB52T8yS+y|5EXHo%cFGQisClG+9t9l9hY?EoeY|IyAmNmIX2iT;o3BBe2_BR{YGqu7`J7PwZ4@)->@g|W zvJGbijn>r~Zi?RX`OG|roZm-_c^U0DU7MGyo6dg~OKG`xJ`Q5-5QrmYt06n8Hm6L1 zO*V+UX@IO8zkwsc`$>sQEJa$LXqWk&H*2>S$l`Km6q$7?$Jg1x+v|K@Ze?F9XXdhu7+3tbbLr5p! zrsuI1divpsuY6!WY!Wkh0z7dRCg+N=V0-gRu*gKtza9`{B*KB7Ed)HpiCESOe^86ekq?-(7-$p9gw&R3oc#xBetNq_`i7K6wyU%0YjTcPr zAyF_UW@qj7b+uBdU&X#>>oY#sAbfQu(aHDB-50x(*Zf!Ke0@H>G&Pr7V*g33#U79` z48md!vasV-BOF!Q;LHzoh(LvE{~)| z;L1G$`}jz`Z&yR6&A)JCnG5mVaM~sBh+e=DURfdgTBQXaXl9K}ko#pj;qN+F!!b{WHVskFnyC?ZfWl5qyO2)qr}WhJJ>WlJ4cY0LH)}Z+{%Zw? zH=ka>)Q#U&lV4uI>g+2R?0i@Xf$dthu+qX+b6PXr=mha6Y=BX0z=cQVWhkL-l%}%~O zeR1!Cb{dw9Te0(&*}Zh?ac1en+v>ns(@V7NJ?Ws%G$WBlUu8~w)`fZ{C7^ZE5Y!`v zI2&!=jyOxG^U!*hy7CHs^bYAQK>G#JslX3!U|;3(b`5bEw}tjyJGD&fZmID@YNklf z`&>IP+iS8+{x8l|n+o2}u8-7>1j&%C%^9(Xl z>f%F$eV|!@bX2rfR91T#PO^P-s?q<^;4wzj^&9dKpLuE-hUUke~vT;l?eq6VHlLP!dQR<0e*Sp=b zXixrbW6|*7*o%8G&1I91PfikE`J z{K{QJ?}av4DpJ0(vM*tvu4pPHR4t2_&`DUi;zDA1p}>=b@5VaulJt{#=*zcwz9fo1 z`Nu9)Ym~Zvft83r>hmR7IN%4=J7t9$sGV;>Yp;(k|6BvySfk^_Z!7o*!hVJM$SmJr z_A541KlGFkr)n$EK66~vE?fwm+CfROaH7!4`FpL;QbAIw=%_u+e2o&oE_{Nfiu#4g-CMaqphihcXZU;n?0L7I4P7|OV71O;kYksOY_)FSm%<;jdcOU; z*;kMIxUvKY7A!-LG<7!g{#NH;Vr^h6kFX#@iY{D1Z(Ow+njC0=_OjT@1RlA%mV<0$ zhzwLdh<`p!1Ywvbyv1GmV{v+pQmWV`Q*9ez7T$ zHdtT@>ij5SBn_zNl=eZ|I2qBALdXHXO#F@nkr#qR_&>qI99R2rfu7$`x6O>zv^|&` zP#8dxcGp?Mn0fE+md5R7yFrTW8PQl5ji)QuTpn`6YlZ=5VCo(Qr-C4qn)F7=f6VWs-Apc7#xFzZsibLT!`jwqn`c0A zS+IfCqSl;=J#Im!ig0SmPlAqvnw!&#@pG`PHDF zgiE!21rOU@CiwK#a6YK`=n6$Hcyprfhe!Y8_iSi?wL1g#?=FO zoi)pTKn8V>@Rv;J##q~O)Z3Lp(;5g?S>mn%b@y(0reunC4uz&)sf}>wtLjFXBd^*) zmV7p{PD2wQ%?N3^`GE_?s|7Vl_u>zWyFEHGZ=sSh$$A+J(h_y&YWoEXJjV@>TQI|0 zK_^Aaiiy>7CAn%yUkBBYiiOpLt$3yt{I;h4o(?IF>3{XnXYcGcNqYSZlgbRiqTmVE zDC2h?#oh-nK||hQ>y=OX*3$}u`kXmoH{kz z!8H%XP16JlCxpOs7UE2^R14%h-08zPdj8~ho_?UX%0amQ>>5x+*C64H4-?k<)XV@r zQg^>jq(SD6L;Zv))@k^RH`3(?&FDv~_Rljq@+ja}I})#8z34{)n3R8dhX7y_2A=Id zF!@$o?2o`_58Qh~l3A_#gxL9oT=w*UPn>eO3a9qhj~3FHU&Cu**P^%k_a$kh-;aUL z$D4QD?Zj_QD=4C*xJjaUhN|RZw51oQm(GdJouFOhYyb2+RWMc<_%#8> zFM_ec@y%u{)_m76OW3@+)#6tDj_6*dz{ z()i7lq!A)xSQ;;?=p3#dC!lt4SX6)q-#9SAr|k1YCwM;MXEQ zW{%YX#%uBiH<-rEqa5loB(0NrI%KmtIS08S=&8B6)G9;l)r@J6Ce+}mf*d8;V-)IC z4$yx2a+LH}+S}bzVfVR+YsxXPim+{VPy#^Rzg&NjMkL<`?NET^w+A;gXdMJ}D<|t0 z?opYAw{+{Xoz7R9Q7<^EK-8%HW4)AHAVG7NPlxSE6R{KfZ?pJ&H=1b!2~STCp$eI& zRDniippvea(I44E2b@i-Km+}KVk8IhqBx6p$BMBe1N1U>Vhzt1zKoni5+V@HtN)X; z5F!}(VOLkfCcM=4$_tOKU5l{@Y%F<$8jE=|b_sEI*E4RImKf1h>!WHq>C{{s{_)M& z)uYWi?LtsOIRa+N{9gWV|FRbRZ6i$tC!)zxyBbe7h_R>iS>?n>z#apjNTphcnjb*2 zwk5=8v%sfc;=kMz&T&x0rD)7>Q%wH3`N+#NCas#2`CIs|vng7PH|lZ zp6)=L(q8C2U$|O+vAaBC&`DxAuc4{N=;O0 zgIX}%3Uy5E3)prOzFZTp@eQwhb&;>z>6UUlW{EUKOpF{2g69LWanKd3+zBuFsRSw~ zEWW1aLCoqn=WDQJN_rDXJ0I9(N>XGiHb$MmS;OBB~ud9Ph;4!&t9pD{)`K#%p8HOgH8mSkC^MOM5CCtM&*m1y- z{}eYYUxaG~LckBDe;fJ$PU8QgHaO+e;DrsV{1X68z4~mp`2`{e7U+aOpOCQm{HOca zYqIsPfJY`aB033n@&l(Nf5lO>(;N}L@J(FjV*_CipWe_mVSub_w0g3D+9^5z5GWhl zim;u5n&Ex%p?{#NZsuu^FLJ+Z-c02UCouX4jk(sq_qq@k*DcO1l(G9AvSoX@djFU)MY!{ zf1ggm)$94rE#M$pKdNXNFe? zIacuqcJJU9DFRd#GW$-zEsiT0Xul>x7GKD~jey3;x(J!@nT9ztd(o;42xnYCAElOTp*DfK|DGXV+HT+MVWs31O-4 zKao!Ub=M{9LKVVsFffKB0(9pRYFdCgq#npKUvoEdgdi-N}K6&^LM-G?3+ zhGnis*Jp8zE%(8{UunVtJCmJr2quD*f`jBD1KJhdzcIKNyLX#Yy>2>>Ct*j>n12H{ zdC2>$>C9tH2|M^o^S(bvP59!S#QU(=quWO1_^MVS$tLJOnO{=IR(On22}HHqpf~NX za%zBYSOOXJJ4xTY(6H2^-d#9s*Lg(XNbZD^bV`Ef6fVhoTJVbZ6#RHl#}7ZH&u7Zm zLt*ag^Olt|ZQVF&Hv&w7xl|I~gJBv@w&zb|HC6Ds)Jtu_61QQ8o3hz;4om#9yXQf+ z2V~Ddi@;jV`%E}Tk}96^WShNbcffg|f>1e>x0`)q7P{o!P9aBKF(HaUCbKHg2`X?X z+oF4+jFy3JRqB`$Vz&7n7`F~Uq{Ig>u>V&Ic+KkpO_%oBmkTQ4LbFo)fHfP}_HYSL zC2IWVff?KL^-f!j<0gk`DARg-O!l4ZfQEDwd< zj3H0Y@N8xrrDTR^4IUHg1=lG=SRSaVC~on^VoM<@gK+bXnHMTRR0W~_5FhG`-{V@_ ze|7$+bC@k@oz)YK_OlRrysXW>{H%}nrJG()Epql--UPdO&4|YVQ@O=}{=4}e7WY3H zxI7kTrJh8Kb7lH{z*|~Sg1*2YnsR%8q-Bhwul*Ccqz?y9c1k7=*f$@*0x-b%MGYBdmP?^3>l&sW z1F#|D0vmXQFR+0fU<3YBM^Q0I^9yWX2W0-8g~t8Nyy84oi`*@k*G_)(sX}g{f$6oGVAoV_W;x`l9xd1 z%x)Bc?~kITL_=gv8cc==7vVY!uzP&6nIyd@Qn6c~@Ei~^n;MZ$M%#`zmwbmoUQ#=i z+uQ7rz&NUR>klz`kJkh(zq)Lj`O9OijtnP)1*_}lW0k7{w#R*<`ra`vh*kTI-{djIr#9x@`_r=4RO5;%H^+5h^cJ( zA2irjhqUqU#$&$+Ovv(iO+b3xJ1s^RBmmx3>{HXj%gZ;E#o$pI_5fZUUqBFtI7$Dia}54}L~%r93U zF(DNDYW1VHDt|U?KE!!6Qg_s;-uc+nXv060TV%vMrH93(bnJCVT%5I$M7a7T-)zzo zKr`WZYiBdCcKTs}wbQhmNm)7wPIhv8y%BIgCB}P5{#m^K$(`7kej}WLOD~#o!Gd)= z4;il7DN>(u$+GZ-ak?1hy-byp4YuT1FBt=i9EfRF$X}R84nT% zPe>CDtBuGL^UUjJjw(W-dQ$f9V)04Ilww?Q6BgX8*mRN?N^xU-CGwHU^8P7FSJe^* zIRw>q^eSz-pzdZ8TlYQ6D<(i)KXS3IwKm8KE%hy=0?k0J1cemoPx&*L94BslW1gLf?J| zy~2v^8ce&;F+frWbPPWb-`ldKSFS3dn!F*dKQ>hVWLe;pbw{76#!ijt{u$73lp+Iu z*a+y~d$Ae`T(KI1G86ytp~6g7;uk^A8b`Vb&P1%n06z8TB;Wk!)v}p+s)Da~cIvDG zJc=!Tf7IHpi3(#(`UsMzPdG6j#u9dmWW z!A%ot|0l@H@u$NIML@^kL3b))0RMtR1Eg|LHJ&TwGLj)W)^x4DKn*cjdNAMx z)P2Y&#pi{TK!(5Een;+6?CM#iN6mLN>sI0IC^Q(K4GFo@NBSH0XyVg-b2b%7!c`v%JG`EfCij;nCiyg01U0-K zZK3QOeb1x;vLp`P$K~bnpS-A;y7;R-JE$u?#r-dZvpGfnbcUP9&pgfhSJc9}=psSx zQ8A{2EMtBMNM7J}$vkUS^E~XwrsnYkcS^d$lejBot=MHl0c*aAmP$y%s~0nU*yfir zhA+}V=N-J1bUloPXWrudVZlo2gBnu=pO#xo=e|%O-Ua>$xWM@WUxL8ff_H)QMMm9L zR^~e<>3ab*jF)xh#4iio8kEC_kY7%J-4+`4H_7OMtzJ>_`Y%Yzuk-~>C&hY1N_MJ% zs0;L^#e=>y=gQ&V2IH5O=(zPSFJTyFfR~fKFMc~Y;}71;>4R4{;S>{(UpXI1RZ@~p z#5`T=GHP#U7MaB!II;!pM#ueOStIa~D^kZsaH1>&Rq4@$WooOW?{LCX!xm+lu%V&@ zrC$SfHS0IQhb~S*e-ymTizm+N-CxBdSh|?4rC~k>=e;_+$OUF;srwvP47H+cEj7x@&h+!C3#786mI=vPi2H9JurBT2> z=-F^)jLHl$MZR6ph(n~LPxH5Q|9rE}MX1ir&YooS#?M(%*VkJ^VPsniZPl+{4#F`_ z&z>G}%@fANE9X{3IC(sYu@xaazsLz@i|eCgHM#}|ehuI~V^s_-af zayBSI#=vvbA}83MX1P(_U0bYP;&Bsf9!mpCF68)=WzT<@ywEE>i}E4ddISBrBb*^r z8!3eQobqV!3@-}A85ad&qEj*5qu@QE0jDB=JZf0-p4Z6XE1hcLmkw?(eq(1?QE~4J z_0<~E-lh-rjY2XcycH#~`b34HQA;Qf`dmEbPpzAqKNGHmuF{bO?oN~?{U6{Tut*^J z0~8U(noOi-ymXci*_}eb1CCE0=fLgW{hm@+sr`HW)!)I_!@kb07 ztNg}N6Mk-%R;w2PHXQDt_K5IwCdMl1tQrH zF3f8nJ)|}Fj3TfKHUtIy#Q95Wx539d<5YokHPjSxuy*zcijjDRjcHRr$zEmeO4u}X z6u#!IaVV!@T+M(^rN15yrg7^(+kDmlSr8X#qx2RS+I~dGMbn1w1MH00wS$*(Xc+@} z9Ox55v3O%iJeXQ-1wL7p7v|zKIqF>^C6@xi6^yB(`GG<2BiJO4=}RqFMS8*zQj*ks zO|fsm-hRO9l;}=L&rDt_50;Z}`=?dS`c)T(FuM=w=Xdk(gL=rDfAx^YnyY=k8a*Wf zPe47yMnnlmmwyy6fx9$+f$Hil+L0FiCI8v0@CM0)YCe|=k%MvicpYrx=S0H;YKc76 zCyaX^>lG5$Zp%3=Z_|V#foaMC?5nDp0o>Z$UW-q_pS7_3zp6yr37=~lz8bQBNl6w| zLzcggfoq#QZ{;0+5EQVL(%KuI#xV}GKO~0n%0zY=rx6&7GFRH8U-9dONe6Y6uN zADt)3bw)o)kvu=le*o*qpklmU(R~EE>;5W@sIfD-&=;{GB?YKMk$)HyxnW?GxzR=D z#7&b6{(o?^PyZe5pH;&sP{jY|;-Ff(DCoelq@-2#n5HCHv|D;-J=n#<3P>}*{(Sn( z&^i9WSmci3(qun;O|P=~=-yBIcLk)6kH$<(VxJ?!Hoy@F+_DrLaWxS(EI8t#;-$rE zWhzNgF$ne44RG2-0XuwW{x`k8Y^`FkqxS&DGyLDxj&{tM(CU3b^F$-(k6*r)dK2(@ zv5gMNF&N&5{9rH_{EPVH$^M>d@itr9qy_JM7QHgmNts9wDG;{UOfa-T_g(gDN;IOo zys&nWI7Aw;D0Xl|^%W#zT1xs9zL6{By(lL8JA&&Li{VJIOQTl&{cM4Z3dT#wQp4nO z3}<6hq1~|6l@mnr>1NcR7Ka1TJ67Ll)ns6&C?Ct}9U(whke$>_JW3XSwI@P|M3!JH z3+xJd_|-r9L$ZsDo6 z4f^k}B$^(l3}p$|p1YG0|DCWQDQsK>_fwtE>c}ztR>m?PdPQaVlM`~O?_A<@9VN3x zYbFxFvd(NaZ#7#fVhi}KwyPAA2{+r%Bbt_#v0@IDHv4|;^;+1k+V6Q(ur(7;l3ht| zm{{KVJV*B(mOQn7YI^cCB(9uwQbJBc*zHdabtU-Tx3WZpv}_@Fh3tyi#zOgW)PaJ) zrAyX3nXAPg_^%RCqAso6#h`EQ`aaB~a=W!8`aUtM(co2fBgXSIdGe?}k7oIj`)p@Yc`zq$oI71)=!dA727qVRE5wzNpd@qX$~yJSQTf)*^`EHAYd4DK^wphwX(klky>~XA%zO*|)nBO6H|W*NHGbcGyl3@rB+9)jw#Rth z#sG$`tF_~M={V>t^m4jL-gl+=CWP^k*Zs8fI6u*Q*-9!_Z5>A3LqL0JU%<)2YSOIuK{-1Thi zZMnRs#Q`Uhy5r4Hz0!8MQlpIXr%wd&WS3ONcfMAGn}jjUH&$MH$o;J~PN_1!NjTRR z^MIqp@k)%#qm!5i=?Zec{5b0hNk1i;2M&sc$_BCOufkJX-w|X;2&z94%DEf9E-5-i5y+uO&kV>235xbaZLY^h5Zo!h z{7jaFAhLZU3)iEKEL^wPVhQprjxIW#Jk^ zWK?r{BXD-(_JhlIi!;xmeIE3>1Nve$7bNoGlYbCcY z4E$`yr`KirDHz@3{IF9v#fK1!P2)|ulx z32G>cc^75ObzaF;7SC}G*6FMrrGLXMGefx;H)VEgSL!__=xeY{#BEF@`KW9+lexq6 zL%XM@%saGHL~oR~>X-B)+$i1^{5R!rjRS$?rRxxjl#6?kdH!9u%4 zQVuKuzMmImGbB*KRhT17)Xit;=0)WNi-svXeSaHzu&*uB*8MCNnH+MkkgB{ZeCKQw zty?##il!5|J->8zYt8-qCCfc{)#v+Pl2}WB?v}zf+#HUI!QUCA29di{lrxU6d7yfY z>gt$8_S|Qxd1D{3a?c_5{w$u{5J(^AwQ59!lV$rB7))HHt zeAaPYN*ikXJn#9@zDy)7*3Da{BxO83pEdQRuv%BFBBKvGGk5cdk(b!=&k07Qn#V0p z;%vyepQ`acejqm_DB`Copk12r-B~{5yA$2P>EHP-S)u|tb(MWkcaJcwTl7n`yUABmUFbiEz!k${3_Sgzh&&hiKR^bf2W?3*$?zX zPBx(}-~@(<$l*p^VjfgwpTDGQj%}?DJlV8t>7PoNFZ>VLL17{ES{{d6Cu-3?_dW** zRHV{rDkAncvKLpKWgc&|8mkwEglAVA)oq`*%32WT)X+8dql*%kwOE6} ztIA=ddV2?*GLL9B{~V37@?1Vm^gN7)u~gc!HWhq*obgvDR66HBalZ#{97U!Psm+k%3nIC&Rp;-s^GGx(+ z1$)s1%lxzmgTnr28B$G_VR_#UiVxk6_!GW#X4NG2G-<2@D^Ka?Au)GsbNBoQR#V%Kpvb2XGd4$n9~T1g$SM9r_iVW;oM~$XQd$~Cas;q1YL$S7EVY6cGpP6 zG$QpWePJTYoy#r46XM>Ty8awGApOL-%(^Z63Gf{D^JY z@Z9@TdgvTX9MIXZ@X(LY6fIAWd#|AJ(ui}TD%k{JkYX6&2A&u#g1#w1OjWbRY1QUO zK@7&u;9JW~!b@IKH~u)s}xm@_8|m_%yfbbUsX=!3VoJAuxmV!nSVz-3w}- zo5^kUmsOS|zl!cq2i?*mGFUr48OL2Xj|}wTaS~K^H&^4&JZ4z7?q-ry*L&9T%SnLe z!s3={kau1E+#^L9=c2s`kOxwEo!G$-F%HIbN7fm218a~yf=ASrq#KFY=+YtjjT4%i zeQ23NJ6iBZ^qZp8mgHEaG*Z7(^l!zQ5NCsUfgeai{SRk22cE9dA>z$<+}{COSQ26f zUw91$fMpaJnWKXgB}OrF7={4W@dQg{iI+2$@gwaIj(@VN%$bj@t1{L@3+nEuHT?|F zGU8ZN@fK9-nnU}k#)~b|W5lVKh%gl!0i51&lD&yq_Qe$^b=?Fd85?578tM*#I!Eq3 zhf*<$ZKjaYO(yiJrz0=XvyIv1k+3a=u07*LM!nN4 z<+`XN6KczqD(=rro;;6X+>22|^yJ%iS@u**>K?4jF1~#{-MIpHDDQXerTJ=jKG%J* zajq)Cr0>qXC>*t?`2F~eipjKarQTUr49c$l!E$?qp(9blx4f~mDf1kpCCZ9Tv+@n% zgwM7*|9ZT?xki!^$B2rzn62}uEiJcQk-(l2Ew^|P@I@)b3BVDC`irMH2S)C7;q-uY zQar5ljEH}&XL|O*y~x_jOfsXB=eM{_0-Oag0ndZpREi?+Ic(s&d+$+FxKwc*ee`_qwwz8eXT%~^95g6ZIjOLwp#vQQ{r?xq>~ywik+dO>rT_Q_G3TnVu9PRzb-#$x z`ie%bL^N;;a`$~UF z6q5=^>z&y9m69es8ge`7G#gs>9bUz(>{oq;uHR*y?_5;v|2BFCcW&C(-7@>QFR;_6 z`-qVWkq^Fw82iE5IGzS8lIatEkfK=Yr#SY0Z%HPnXs`bL9<%mW-FQCYldDk>63d7^ zrL-`h+4yM2^JV$GQ4+}Z89sQa#jS8;H}p)#g!qzW)#zE)hOs!4YH3$MTWh6MH9{OAKdcPh2jcgvljNjURWI`^KHx60I?F{$lkGT0-2K(U&mQq-{oz{><1E z8(Co&p3G+t+cBgTx2qJ`bD|X&uPkou4Xmy~w;iRT6Rfe54yYa-C0UES1uOLE=J*Co zyrnmc+qXV1P7bH$B{h6m%uG)5Yp=aqTQAMcv(=t_ox`{~*K!~3Q-_Jk!~Y~Gyo_yy z&m+t3o|c&NDuFCVC(fH@qFr*y16AL$TiS3m=9@w%P~}m>AaFb~+OR)zJ&BBRFHR+< zVPeu8nJv+WC!S&cxZm=ep9Ui{pd6HhniN)Aal}K5e2VB$_PHg4I38nTE3SpC=2MRI zOD~gmkDs>6qU-n)<$sI4E+g3m#A%%DhV1zrCV}sEn#sxc6Du&c=0_5#WZey0y36jK zvq|0%71{Jwn!#?181`3;TD%WK7W_Eal&(J)vbKH=`WzNg?; z_U$xuye>_t4ZF`kvMAnLe?w@Tg|RT`sYM(>L&NWj~L-{DykRJ`K?DT;wFh;a|ZW$3yW z>${G3P=K`~i&yq;FDoe^->hVKN|@(ad6uT$)-6w8iLvNhA3mpDLMA_dwJjo#Jdy0W zyOP&C!6;U9u|)cB3j$0@VwP9>rN8;pBX`gj7nlfhXxY&}MVC~UZ;;kOVdKmfo$fnj zO}#K+A+eqY9n5ASbIo|&rvb&)8_0#by4 zF7jab7AYcl?`Ia1+pViz@Al05mHeEufh20Eh`F^ilE?$jLTD-f0g77|BvXE+8Mud@ z)YmKpZqyTBM+|7tpFU}G^3cJyK3pQE-Tk8#Tcxr)Dsxhsu^Kd;aLG*~zeB(&Jn@Ug znHSCa1tt6TkCGK$P%_rZ!SzDe-Rep3nJZHq3Sr{!@iX!o}Plc1Qs zAqOZ9+OHDVoL3{KPDH6C;{0DDL!`;0ZnIuF{c2hnvlXQPlN-UkyXiW$mIQkfU9har zxjvHoLUw!g6PM|VN=^7|jcRiG$V*?N^{9Kt?XS$wD1M!N9{5f+_DyL7r%?!~#`!l1 z%d=%&H;B$CnSpF{cca_G#F!=|^VR=D)_2EK{f6&bk&+69j3Z^!a_izt`*c*XPyemEPX(=YH3=Ok!Fb zC$U#*k~Is)_E~mERyFXG+8gdG`Fwu>_H6?XX8eG74_=~8Rp&Vn{(8fUoBVgZKz;s- z1eLL__C~)z{nLzZ##qy(1#x#QzYB<_2$92_>t*a(;7G*gedsuKIL-x*vjWG7#BkOCIGK$GW zGU_>1Uj&WMsbRYpl=dg$o>(M5oo)VTyKxyt#NT`DSuzE|v~%`?eHDDRuZF1DpofC( z-J2$f%Ur#7PH=McrL!>H*)4GfI9J`15QgT-_UE27XOTLoq83)M!q8qtm_wwQI(@0H zN->TS&F_gA2p{i8e#5f6s>@DwdU4bII;=!7%59+ zc=B{6A|7O;Y1D@6X9iny8yeD^u#yL0*LDh>aUEufmWs|wm6(c~FeSzvuxpu1Js?%2 z@gDqP;9X*pM$>ekqZDGUUO3Obl(fwR8DXpK8ZPC1aq}m9Ly?84ff;&l)s}W51^ud| zt$p+Exi-T$0l};L@_(EPT8P%cUb;`XWvu1;Ejan%CA%+xOWiMX@jox9UzBj%x_LQ@ z_Dd{RWoNVeA2;xr@SknPx$M1%c=LVHb`uDN%AjKTrdm;AvyIXd+1L?e*%g}obT&y< zw|dv_zv!{n35$I7@Sk2U2|}aKPk0ocf6$tz4}bLZP{)$!u2{Jnk7vNVoV04%%rkU=hpYOFi|n>AIF2Y=Eh!gao{gIdPE#(#Xe(Q<@VF2t6;r#JH%?`M?@)2 z4&_$2zmEC5ALUkl(O7ET-MIj)myz2%~Y_95-865cb>>9zFO_e?H=V}CU zNMPNaZTQv2_^Xr@3^Xe@KlJhBx5*%QqCu z-G*y^%rfXVn%x?gNUf9Ks^zpGH-lg#h8Ein#I(LS?*3%>(RXl(x`yL?P>C7)>bAs4 z@VP?8I~nC0#4-K8C>7;F zy>O#nBFPsVS8bi&n;hoR1gcdvi!QXl-p(HCiW?qwI8r3wzdi|h@*7&B*E|@)dkZv-!c8gcVLQo!z6q6F?#!OJcWbZlwEa(*jL+gW-!0H%+~9u zU#eNIFSK=Q1gNTaaA^;rf1Egbi4JT|Rfnb@BCZRV{#tVRgnX=uJA(lG4)<_igFX1F zjN{x_9iq~O25@S$X|rhj@^NUKmg}2jP|O^4jT*tbCatAt&CQS8cCf|?L-fY67S_0x zVzG#-@Pj?paKDtv2f7uR^QWJT$}2%F8Ss*AwTiE>1zOXttU0hux?^Gp1?BgB+d$9| z?Ar9sLE9y?YaQ7Hu^h~*)2!s`LckNBJ-Mn?|9BjW#f;#iQZaVR=S>v@S5y>QqQ2Gm zd_Sg_wY`7Wh!PiFsDy1q(zsJwM6?*2bGQRVqcbYGhlg7P)C>x`J}RBz&+o?$ZwN9? zq~`^k)*5FO9i0$UF4U3YhOpj>+pC9rUbR}2KUJ_3MApO4qul$bo7A?5s~I;UZWI{i zp>M5h9S`FVj1ZW1C=Lhp$1fnUs}-lKF9LVyEl(GU!2djbd4zs(dc27U#IGG8FbFpU ze$^6&-7J#GL7XmOa!&U!wU%()-}an9^g(aY77Vw841Bc*4aANI;x+?WQnF^i9VmgY z(><4ApK8e5(PCkuGBGZe1dov0^ltS#s-S? zw&%jo+F*8Qi?6S%C$tmF4#{2fZlbdEd@piOJt^4XPA64Wxo*-`bP*Q=*dMy&ix9sU zQu`O52^}p}JeC}%g~Djmv&f)&qb0D@NtR7Ipr_woV-rQ@k+dDJS7_L}CbT0xBJc;X z*{Tfub7h930_|%Jx;bn4TPGT)EQrE{U-j02pFfP!NGesvbJ6Ysc&yCGMgTua zOuOS%49R!e#1`H7I0zLrJ43vZk3tfV<<+_9P>K%Y5nd28w^}ERD zqCM_79r2!zhYo1Bl@s5tzP8XDg(9JWZ;zw`(%F}1Zzf6_b>g+ca2Rp#eMmmwN>mfj zLpRR8Xxu-lw2m~e2Neh2z7lNcdXVJ!FFbnu($%ktLMl$8z1$8(>I$}4w&=WILt(0It^`7^0S zffbY)Z1Lo+SacC%cYvXAU}88LFg_EiRPYuBtR}@E9z&!_ zK5q-;2b0XZf!zg#%5m2@WT{&_<1QHtK%fHiUmETP8BZi~U0iWvW_@c?&Q7bD5XD?^ zi?Ir}tEqI~ys_mZ-aEQgzU5?fL}kK>vona0xDuuxBe*)RYrxx1wCu*f`I1l;8NfA0 zs0DErl_9HRq$>c2kh@R)>bzI`yY{RE&8+Trp$WdU%*Qwt9a5pTr<v_tP1wpenUM~)QS(wWvpyYJwy7(6s2h9?+}KO_SmI!d5$e zc*tI_T_#}p?z^A({5z;yI%{VA@!m?AvL(~!rllehuX0n&FD5N#us%R&2EdNx1R?gc zx*XGWwkXRpaHJQIUxFrpBain6NY}i7;Hcyb9Oa*wP&X$u*Qp+`1nvd$wsc-0VKVFm zjB)V!hu)fpK#Iu{j~&5fgbZy-ROegl-m-M)F@Q2ddyks=f8UGsgqA=AYM^OwI~kY< z%ChOsGhGAJi^6)zZvL9TrK7C+s;E%>G1OR2KNxO=3xw7t|4QVPB<*Gjh6H5jM$1(stK=5M8kgJJR}od_?m{&1L*C zR%9*!oTWT~UE!F{_53GvySzl2wE?M-w+o<$Ul;;<@Q66-&B)ZgpXb_w`M`2MRlhNo z#6BHX88sQKaa^gLc+~#op^dqGvnvT+7^s=279@B8i-6vDyvM3hZTvF;seCG@JcX@x ziDvvPls}#7-lSGR8n~Be+(it|nh|?*tWsUtvjhUE>fQ7X2ub5}FFB_0c^d>JkhwYc z@)I?4#zfbQLe~10bz2Sczowh?X15Bk!XAwRC%L_4Rb&cMQM2^=u=@LbZsP6$#quDS z8|jwrj)-+x$ySJIJWDW3UUbPsnk^G>QRnv+hj}ak@_BTjdxy*Vc7kQpRG`WOuazF5 zec^8Cpf9BCc?yUTye#@vAv3wwTOa5u@(PUu?REOe zFJ?x*-t)M0OyE|%R~Rx3cL+Ob+jwQhXyiL)JsobDkr<3!dF&K!+<3H=jyJqF6(vhn zEtM+8(2!qe+^3Dd^7-#X!kmzxS8CCf$=K}!ug=Q>$*}j_cM|9jUjD!;z|#tbk^z=O zNBSpLuHCAtVXUA|!`(On6aya+ih(MrvZa7Kl3IE2Hv&np3FFNdO8g?GV4@APv(TlN z`Q-J;jg~N{u(}i4ox3ORO&=u7Cp0j$$VG1v3R6YEAZ$996{#q^U2<^b%S15uJh8P&0 zOek@=mjlz4W-8!iG!8*vWE8vmvs6o3he%1wW^A(XG64MUWAEi@mkDLxj5|UI^P;hPtF8<$7ncEpzzMZx$ z55Q^qogMjr7-0BvjP9P`ZH(QBO3$1PO6u)!0uLRtRX^g7*xYk-8d>C9g|{jn5r`VO z7bLJ2SW#yFSy5KtA2kWbbfR~0zw+5JZL4^smC=!^KYp$NqmUT|4$-2QmZvK*j4H%i zw4)LciL@B~M0#hVWIO4j?yuVC=b-VF zP-_bod&RP5njNM`y$05bXDtts*G)GDzN2LlDcnc-Get`7@1&nGuab;IeAvD+ubbJY z*|&Yxe9IH^R&FbG?LepxH*J^ZvR|yAM*hk?-71BKH!0;jtFT>iDH--U?JP**0GobP z&m0w_L7{5Kn8(u>x_aG#CGR7_lBbvHJ=sroOfWb&P#*J}WD3=BEAOvedUf6|xp~j* zda&y6qnY%qzn%Tw^Rmz|ip-Ncv!NDbVIoswe5W@R=CL%hz;~e9$JKOZaUjA1C?cIt z4CD6@SMFOAYudur$STi+@OWegYB_$wSnJxzuYofI0<|Uj`LlhB5r8)gF}kAkdy@JX zeqEh#Zgg-C92zG*u)j;pwG6P>9fx4V2|GETE7*OdQj8<2gPsw z?5d}bwM9id0g5OyCIpn0fJuy;^OuzCuUGXWo;fBB|6p)b809~`K_ zO7}y`i--&A;~BPT9o^d?2G@ut36Y*~V5;SS0TJO&UIxLWa1f{o=#ZDi|-QUppWjhmN z5W=iaCRZWGcrUQD1Y9q%L(eDH1)wkSSIQHR9MY*i5I}b4r4tupst4B>ZtT}4=YraR zb5+SHP;Tyyli)ydFs5RhP2l2?r?wONlGSHTCX-_=zZPh`9y|Vm*IrsOqKd&h`OfPc zg-DSW{3F9t8(=G3=Bq@EzQvur%>gRC`hmo3dA5YlVHvB6Zlwu>#=&9y31Rs}CetNDyRk{BDrkj{MIC|V=fQPT-l=phv z-@s_h+17EHMw%=GDsr>Sqm1lhs@60CBj{eAMou{CsupBsTamGl3HMO8O2m3G)3NBW z|JuJC&t#t32yKHgjk#VH*>9juym?T&nrHbuQX{^!0KCTm3YW|y`~eT5ICc6HqOjw- z3S1TU+3qhOArWPt03Y>W0EUxmQXlb!HTomK%!G=SWfWD?$WNZPgu7T;nL z8x3E-s?y1|BDlxmJ-Bsig`iCi_LJd&Hkn>Vgm7a&RZXA%a8_}WKh7V|MI40lFMT*$ zae))!WGcrh({-2@wfb*L++Z$*y{aG&0=yu3wvL5d0lULyvCOSM){>ykI^1dPJ5pSc#nzO;KEoRUWt@?DiO3S0`lKw=p)(#uV}EAlKW7y3Vl&eYhju;L@2=BE`$V5D7xx}*1jczx6CPkB5HRk4&ya~8<^ zH)U7^Fs;wVZBM_$-Fyd|7iarkb1BJu?gT~L?uFnsn*n!S_(i4Y4)qNkEv^B#f}QR( zn@4l>52vCKMas_dPuJNVG=dyZC@fAWX4pOb|2$$o|KWqU%ZYn)$fuh^2x7vEjV~|q zAnZ0de;u=Ko-Ys{Xan~rtZD#NE!TiNCx{=9+qr2nW0xZFck08ToIW7*ifr{$tKT>`ym$335N)`&K-=v3d;AyDoaJ@$)W8$VY_)6xmv`7`ncg zdt^C?Rzqz^?Z9|_=*IOU+5;v=*re(_Ia|+Xkm_aLgALnc)1P$SgEeABLWO)TTa(b= z&yx)tnS`wbycSpLa5MS{Jr&ItH=;y8J-<6V#f;Yv`$Z_i2Ik+bSNu zlyYSE>?lv7MN2;&C5B2@%6?3y#U%3m`~cYpD5W~%^ROY|5he|)TH>!^*c^p|PNIFF zkfcv5{L3Am^2Zes8(*}pGdf}Xmxt-J*e|!+wEtYDn<7{LxlC_i?eC$IxH!0|orJ#)r)RRmSbB8| zbF;nH`CJvbw62FiYFc{>IyhtwW4@bBp=?JKO0d{ua zLj3jSlRp)?g!JJK(nrKsLIoqMWjk_4pbzhjeh3wV0v~3WXPb7o$nW}~wC`ooZ(5(b zwTAN7KrbI;sArOX`P{+?Be^EEaG8%A=6|7kuZYimVt?eqSH_0$gN4)Uk{LfO<~x7~ zef`G>JLCvT9vfFJ^c_y-&Aqz$!E%YI){ID`DCtN6M z;jS&yf*uBy$(|m7tf()vJ3dz}o^P&u%-^tx9gdnZyY;&^V}ei>?G4%h!7(*G0Z(rE z!YNc<8Q_<;0TPFJX$hbJQv~;02JJVuG&SDBg5J1E+Rt!;_K*m)2Mv*r$>Yz-lAg7w zZ}h8DNt5`kHm0u8k-s$WO|+FS;==T=_>^E}hjtS-Eb?$V96voG7 z(AO~;gKN)z@Zl>%@3azH5)iJ^gJ*~`2sn@9B_$@ngk6=)ik~n)#zR6T1oIv#4?%4K zB5`q|!gR#F^f~I)9eMF#ch9bq!8`T&Mt%A0Y|pgUd7u4ZrHyX2^lAizecOSVZX2}$ zCegfaLOvtGgBRf>odqGM;X#T|=QQO+-`K8Ac@1`w`tFAysI7#C{ak5p1uz0}w;&}e zzTRM`sEyg}5ucBRyx?VFdZhv6&HQrsdqg_cs$9&&EqFEuZW=*hZ z0d$FF_TzPKez*;(u@W8l=VN&dUSuD<2-n&WMA}IEZ8m3TO%M!bDobtI+Y%(BmJoGC z`r%392TL_`hOf!CKaZk0JG;dN`J~fAk$~=os*}6L?I7_ea5p4+kG=@VA2OkZ*JJ-6Dc}GF0Kc z{1*;sUz7Fl`vDW$oYSWQRWcOMo?Y&`aJwny*TS}BiV7?1aMfl4B{#n+>$pi2QrjUm zSV?no0hGsQ&J;*1_ia78>!mJq*P#_PF?C~CjW)v?+734C$^mLJDf`;aRZfs@uNRpi zs~yK~Y%;%V4O=6%awpWqv+Zf0_L!6=y=yw*k!Njyv5YE?ugEDjoO|`a+Q@)=`hg_m zv$>7G>n}8@0BMm+0tg!s%LInlE+AuKoxbN>>kAf{~vRmnxcg+OH=xuzTrsO=n*zr>8NY3tt zlt$!LaIuQ(e% z^6{nbmcXEYzvXR5k%FI#hyoAEsdc0lEaAJL@$7*mk_!vXFzO;vV5YQeD=meSafaQB@3H zQ^WG_t}01K-n_h#PnyRi4Y@DQ)qF(uTKHABR>({a@VCD9h-QOq5Ia^;Cp8C>#B;gC z0rwx^J&R{V{s9~E&oxE)K)`#-K#lwgj}gi4yYVHbqbfnhEoLWS_5}rdsiotUCp>S; zP;a=n53Qzt$hyCuxBVhNVB4{!RW(H~)keoX-mwMDjP6x?>INH;{)~1>*M`*?m)f?@ zybiZuZd(!9Yy`ik@6f1xQ2cAjNq(Qe%*<`S=Eh4NFS-9n-M0wJ3PwL4+`Fgh`$%N- z-DsK`YlAmUppbev|AfWn+Uk_W^H7a&mzG1viozAibbhY?r+pjcHW~a&gT9k zC+%vR@2fNdjYeJic|?Z3puW|KNJ~^g)M~9n~oOUa6gcT}ZyP2#x4JCM%C<(;_rR*vF9Hi{ zK`*e02!IASv)w%tm$xp_&zDr|9*BbAa3Tc9*YYi6M>z1+PTg^m_Z~a{M{3BPwwGS6 z&twb#S$Lbrrxz7Yb>^JD-65B&QPmZn^9Kh` z0g#!Ljc>v@yZT+Uk}`NwRM0p2##7vZ8AP?Ks9F_kLhH^8rvqhVvY~nW3NRYlvL!~ zJ7vReI!vp@de7}1K5lc$`MNhh8#**Z1s%yNf#IE0oyx&2*;i+ZzAwEj(w!(%hr8un zrqS@s$E1sz7NBp;jHj%EulKfhH%^kqK{=!NnG}$IhB5~N+T9E8G4r~HjIgTTWm=Vo z{b7_CK95;g85u||qwSfiSIqR2&e6e}zV%?_8UUZrdvxp806`9TGwC5ua6k)^4gd%e z?m>$CXA4~!Pf-LAB%-SPBv*gFnr9qvhNtdtjBOp%lddv{()0{abEXDom7Zv|=N8{Y zl&MHnLQ7$9Pk7lu(YoG3tt;-plx_{I)2-D1afY(nHJt!AjqbBDFjO^?2Pj!51SJdD zGz_7%YXsF+kNU%STFc6b`BA%Kh}*S!jn52(rX;-)H-E3@>ce;1R6nuNI2-fTbpx@- zjGr${3$d+n>ueQ*q56*rfbF4pCBaYwE`b3HC0Y+mA&LCy{?7@f5FD*hSLHvluz!)$ zV6Ff@Loio2j9=QDe+2%qP3CL3rath4v7WM>?v8)yUee5jU1eQ+3>~ty#_dz-5L$x< zP4ybGBw4xwa~Ef9NSE1u} zNhuUgipX<}Mp+E!zm8~79V>zsB|pmD{FKkSnO7G9N3tr?Z331}JezLQG#ldjT_%#{ zxf_dsJy>LdOntY)IhDI=*xUn{%vvWA&pPg0=KBh2A#8}KEETm~A$08_&6fy=mI1c|u zSLSZ4pV5_@>$N3SIewb#^RLn~fduBR{REoMB@xc@134J;a51xTc%E5ywG|zNQ?}bz zs&;MC_#RW(`A!LM+Y~i6K1p?){JW$C=mE*SY-=~fCjZ%%$kmQ2QIb!9(7`34CE&6v zHs;3j6)YlEs^RG6Nn)+?cL#eFYh3<5N=2mh9owrVko~ywlgc!g*tNr_zYVOV#5mI5 zrZ&M0o3{q@6v76te>2<(SihwI-0T)of(@=?Cjij*6;e1T$5Fb=lvmgZ+)0ac@kc&f zCe-6vN=87ETF$!;2Ldk7L9a6n!Pau1D8ts$x#K6oa!JM5?uNq_%xnH0WPJR{>x#F$ zJ8_5Hhu*lY#6S!Ajdiv}aih+oOI&b3BAmcblVi}(IeiQ-?7jXJ-Ucj{@H5w1+bee9 zO9yb6mYxz>+mrO?Jx9u1pCSVAS6r7XD$kY=txMb=8>8<~TzJ@DCVX%^7EML|6eanABQ_Nt8lpI`?ts^(ugy*!iGH#R-T_e4{mk3?haQyzGU|c6q)B6R}*r=&#X{= z3EOKU=m3HM8vPam?Wcu_GTK<~&flR#98}WGaXZWeOb`c*GWnx?t9j)*ix3B=woXeBHA!bw z(iRgdW{{m8T(v;1cn#Wl^fVS$@G9pbRAT`+vTdhVU$*ki;ng z2lqIsBvkAKD5Vh!Nt|oSW3pTNL7 zDv?5M;+d_;#pej1VXX@8&5H|t_PBQXCd@J5L#Ly}$mvaD!b$SL?0pb2hzL3peics}CMxxk z*IED3_$MtwcYRAua-GM6X|X0Z9@2j~YUAI80x>CKEZ1N6ha3yDeY)J_?8^$f>`RzJ zH8m0ChB%!^3$nhx6y}#>Vfp0Y@}<3C8iVKL`vu9N?b0g_w@5r1Hd9{PK5669iV(FM z9wRbwRP0y`Vu%#yAk z#cdwb@m)D^5>UJQV4#9OWXo((&UwWHn~jGlB3rsv0gXb* zO~S_XpE~7!og^W8Zrf=sn_CAO2Of=W`5vT{BK%hbk5FIWxNoFdA&-$I9s!#|u}=bE zUob8NTXQKDSL5Ts2$Ob;`hD{f)eQux>K3L9 zRn?JGVVoRJJ6h@x;}nMWyEg+Ghtwm9huSfqH(%wXgwUJMJTwmB2-vI|v5se9=NG?u zwn&uSa1}ndPZy|I(dSu(5tGbf2i)uifTk;PHZ_LvTxk!4iX!+PVIpAMAFT< z(k%UZP}0@Oqkxm6f!e|QAd`Yoe}Ln@UoRyTVWY*rXRWVQ#OcMXd!~HkiM-1b?lGGa z6SKJo)=9@__#jVnHZ#I1=vuD*(eu!U{HiarBe`oAd5$a+?cSy&1cc*i9GFL~_kWRc z>#CYo$k|nA)(mREzlap-EwK;6|9JW2AZw4;<^OblGLTva&mG@#er?7dCnFFi6M7hb z1Clj^61b?FJmU)>-s3_!JBbOL3K$2^MUqof6cs0zwAk!3rLR2+Kdg$Zx_rN5fFRx? zB6l^jt86{gle9D~msS3{BDFM;hk@vBlqDA30LAWX)FLpOwSnk)Bg88-N&<7MSLW7RZANVO6hYExT9`DYf+xwxXyNkUImhyPqaN;TUxEApP zQ?cRVaD+je?%_~6&>yG!-HFJ60uFO1{-q81|*}_jwUZU7_%QYWSM2SshUlWVEd$Oe z54+H_rr#;|=W=AA=GeLWJ5Qu@V~x7>dKy~rmH5ri$i2T1qtoL7C~IG?KjtZgUeuE> zHHMvXN2$tHujwpvzTuo!w7;JA8bM%t^BAbSALe8!!-(Q^2|qUj&2GdWuOb4E=em)I zQ%uH-?e;H>xFy^vcDMQRAKsHg$QD#Cw_-S~Wy=U^F4$V?ntaHf8pmDTdtjyia3tpZ z=gc=uT~K=&WK3AZZ1O|j+#&yBT#caa*8{!2kLcOk1M^XqpYHGNPy-=c{kxljSI%yt z@5gva((kcHDLC6B^J^%+zV>aT;+dZb74-2QWX(**Fh)j-rne<_i{jqYfkNg#KB^F4jjgI z3IDgbaBNFH5O!1%%AJD@JU*H0y+3wKy035;^YSCG``5+35Exp%a5Tygax2808vG8R zuh7`}YuDjT8RytE>9T$!=oGGXveL9%Xi&JCuZk)qriGCujG{$K@!(s+l3jt$;juic ze9|3#-{}$i2g!4{2Vz9h`FGw_rJTp=mL;m)#m|O)Uv`peDkkGw;x_= zcg<q3g@QO_j{I>o<%?gCL?_F9SG=2A5;(lz-6tbc;Dm0LeYq%YgqBUa`i^HyIIqyBmOqbOTqlzr7xcGH!KmQ*F0+OZPwk}Wd0+;ya2+% zz$RC;f8|qt7L9+Ie?47ezfOt<&8P%*IdiMvl|K}_{=731X5@dF=$Y+ix)Vb$U-P(~ zrNKT)8)2EcB9CSDi~sV`q&8y(96f_d;)CEI?N9>FpDnY3&i9+8tW`giSo;S9Fi(98 zTFkGf-^mb?HH~Ls>ArJ&0qgkUMI6rG+-`chBWe6%9jBKp-84IYm+SJIu7KaYbF+U{ zuUQrx%AnNZ-D-*|=45N~GkxR#cF6x>h|C9hDPq@Ax(ei_Jdl@Ss{Z9A9wRmMfG%sl zI}GHdJgUks7A%uM4hqX(2WKi5x7wi=2MZ;825s&&MXhfvlkKs49b!^lHYxmY^^GHC zOXTG>y2mt(EkSMyx3IG%pGJRBS-+Gq{q^tcUOqd!p8zzneitAtaigd5W6PeY$d^%Q zfUv9{Q36K}qbrEQ8e``9@wFg;63&CB>RG{}R7gDMZ}$@4o>++ACF_S)X0=pnk|^r% zH*N|pB5!DlE2@T;zbJAc>eYMPL_xpD5kK|aJquOX*L$ZOZsn<#m+T+EVMN_UY@A|q zE@SQ0-yQJHfY(YznsrgaVBhD03)Jl>g@03HQz`%vN+BrGypZ{y@vk z$yuI+$N;wtLhb$jLbQ;RN4yu(QMxYH=mxqwXcKH+?9%=JqW-&^Y$1sHRl(8%PaKkgT`hxR0WSxB(}e+d*w-p z7xF_DtWktZR{&f*sRb_VBme{u6M&b1m>>WIPcP(4;0Eiymqejkt6&UmNiA0G1}K<9 zh~|6j4gT(YRrREsGexnSofA%KQnLM0UBf<_Nq7COU0QoXzh_slch1i{op0KGgH5T# zZJ-mL@k#zhLrYNAYKuI=O=E!MApu}rH!7)cu2hNa*9}+@8U+B0f2>oUc9a0Gu3s#1 zW4NY3VnofCB;sQd*-VYTu*9EthcmfaQs_5sKHmCT=}T60D_6SU9^T7C&^4@6P#|HM zNlP>b84reZ^tQ{;JGp;E|3iws60F1i1f-ZXt%PcILe$Zv_6y!7i!;jAUZiKT0{-eT zYs$S1;zjX`dpn+4!LsIur0Q=UJjjdsW+BsYWj=AIKw{3REh3WrCVbG#0CGy6_vBpA zF~}6U1B@X0P4;r6P;ie7<%# z)H6JSCim=eSKS+k@dSr-0mLn?)tzgNq{dhHDy&g2#%Wuia-j_2w`Qs5omslzzapuF zI*$OX>}kl`9L;z+Fb;{e*x(SHTN(PlVr3uCg~Eew-+K!&@x53r|VE@ z_hUNHAnNI9{Ebw@;3oOB?=^>zuLWHcM%s1EpQDghiL$`U|3@^Lpyfkg5y2ZlmH@iJfoeos*fvb z)ck4nX#YI)h_7qIi!tL{+Pf%t2rW^JutiM7U5r(9o*CzmM4I*{AZU41;6Lj~;jFvm)*UZ?M-?zL`^ zG_u292?b{#JxA5#Q^mtI&LxAhGX3lcaq1v87->!}rE)0nwWQ#75<%i(k@85^O|L)=hanOuyrkVtJ@d)b!*2v%GK0!g^W> zQIGF$a4S{04G|NV%vs(DU*E$ds}mL}kONwu5MY?VpWq*}o)OatUg~}oH4pfUAhF+) zx`hd;AB71&zN)!@jn#l08!6n&b^1>WuN4PPqAdG>(J zC}zIvd@ku!<{OyYdwth)4Cwi~7W~vPS~Gx$}OZRC#t8>*f&@+H;Vl=q7#_B z3CczjNVEmL*N#gGW7(qRzq1@?ln>}pAA?{MU(2+d%{_Ll(Y&|gcRCAE{k#v`cOD7+aQlh?{TVOE3* zG@PpvX?>gE)3pfy5>T15J79U2Qh^+uuQOqOVaEI-WcZvULw)^ z^^`2fz!t^}3IB*-ELXNG>ur3nF0r=t=ftlRX@*-?Lioy4oNUyxIEs+r?BA1m#cGI} zDcvGOyeG-Y!G3%3U!KrMZ)3pWRcs>l?RRT^{S`gAeMM(OVozrTL_;`gt?V~4pK|31 zdFC?Tso6`VCv_=&i9GZgC%s|&`dLCRKQcdAHU|}_!9W7FE#WcJmA}5^S%CD{JUK%e zoxnKBysW1Vg_>{O?LX;psqd@c8d|PKtCu-BG1_OxWzLhtwje6a)6> zv7N)68X2S)oQ9S`v`l)1fOrJ{D(ueI>tM#shLT>xjMy49^R@&8OfaY#v40PGAr&$n zNHqgQSYv#x_vd?#r{9PJv6A`Xq3zP&fC-legv;H_pnU+FSjXYy$;PfVWyX0dkoi`xn^ev63g!GMzXv1R8?6tZ+nQ{Jsi9jqb|H0( zr#<$Pis#zBTyk#@${P?zVKO4SmstjfTtsnY4>a*Ni5|LmJSJpEqD4Y>BnkSL9f>ky z!I(#5=PGSHF_!ATWKTkL*xUH&o;_GQ!QVs*uuQ?85BHY2klY+K$crMMa;K+@Lp&S_ zrJ6g%`C03`t2y@jiIHTd_GEY`Eo$g%P#ZcX2v#2FPD=>&WaeWDNHAgLY_l+=3XB7b zdQDKo9g38PR&T~^-*&uScr-_SuOey>2-aL0`oriN3@8#oWABFg4>iRz_8$KZhl3s=>9k&ks zw({&Zz73a`Ls%Y>R}h7Xe96<`+3Xht*SD&81bz+25M)MXA6~xq`bgd4>4OH77~O86 zm~Npy_rN`&BcSfMC(|6bs`z|h&ZpZ15sI<>M2es7(mhYQ^O~(J(<2aP_u)z#+dajK zyZ|ag29cWf)O$*o3~xI8!U*b=N87FOzGf6bEDHT zyB6*dEH8WE*^hawu%I63ClW~>lB^PVm_$#DYQJr#3-n+pK@UEaEXgs$Eh<5MrP|RT znS=>1VjsQ#>lv%j!W6c9;Dp1e7_+PtNkXgH4Pe9@)j2)(<*xNx#kXK#Ry^b~HAqaS zx6Olh-SrIQ{-j`962^cRX!E92!33Rg_$Leq02yEuBanmtAF@)1^oYWor4U|_LaOWO zru%gyTJ9D=?o*49EW|Z~CXD9HU6_{zvAb1OX;FXqvx$n{hp z0W`{Fo~5cLG@$-dW>Sb7R^OCU0mthWLZJk>r!-HKuc5$$#Q#0$X*OMO^dquhM)5u{ z!r+21PdvTT*XL$H=8`)nGSzFjc`H^OFU$Zr?rw_slizi+)0Qe)59-rGSzCbMi85{z zxC0lc3^;>PYW+I_-9kvf9kj*(OF0Th)aFzWcuJ~1yyEFC2{lD34kVaShq!~5m##~c zFV4BImziq*vCcSM7n`D}M^#8s!0Gx{aLbYE0-HC2_ zg>`^o1izj?^_po+B>`Kt^GyljN{u?=KmEfuf-*9P0&pMwlrv~CEcJz9 zgVl$VUxZ(gN|#ZUsb_e1ZE+369+oJBGo&1HN|$$qoCtS(bOoe(T#2}8wXaRgGYVYt z?UE$YGh_p1EgcJ8IsuS#OQK=*|Iqc7QBi);yC4Wicb7vWAqYt4&_kz4NGaVRD2*_5 z2*QBW07FR%C?zT&2ucl&h!WD$D1Fc1?|;|5cdh#YU5gL1XP>jx|^W$#RbbwBkQK)ScEYvsc z<-8qu@a`Q~sP9xMFRJKWarUSGvn>3J1|s(tqx*@{xoZzy-+Kx@+uuhYiu)vaBt)2w zX;E;znT|QGM-2S^dSCsF{j2mB@Q9gAug!K?(1#^4yM4{7qhLCU3tC`MW1PRL03_HnAlZ!)CcR*shUzxF4Wq zAVhg^pJKIa=E)vL0w}zi5zrh|*%E8hFEX#bVFhp2#pu+BDgn|P7+%gByT2~cQ+$-a z_rQ5Cdt@Y#HxYYFk)DI=yjA-SvDL=;yjtn`pthqAWgWYL z+7c^oPk2Bpb<|hOHl*NuuM+XNk5p4<^DW3n&pn+LV?I!0rQ@+R6+Vx)->ACl;+s}7 z?*cjhTSo4Dhy5Io2KSnhf4G7JoZ#pcuGkMHkfrh-SgB&$ydd>eKGEs=cI$+(nt5b$ z7`!oE>x3jL0`kROQd}#qp+BYLWFW-1C^#*2C(y}Vq9_dUrve>zwPah202WD$=na_1iWnf!%&&f)$- zUjF#2+5y=NNVAlEclo>Sq&yEc%+>5VPrs5h9e-gniTs6a$4Gv@;divneUS1=$RL;E zq^t?F`@LN3696ubztWsng}(0bl#jir?p+1&t?AyQOW0}w@M(s*uUUsrGgtlDMNy_o zC&SH1#ayEU&$pZIV8HD-jkiuSKH7tiZEepuW{^x7^P5Aazv%dyd(3LVt3*`xC!JL= zdjqf9Il$24JBpWAhq!umh@SMLTfnK(ET4ZCd9ZQlY4R>A&L0AN(KM}dw>$TVeJxov!=s`frAYU*B`S11i>c;#bm!Pp7xgwcqJIg(%PO z1OLu{VPK)urXe+2f8IcI|FDe_T`rQenEgrWz*A1`@|$DP*N(yK*RGKmf6a`%ICivZ z3PRuuekE8_Ib;|n9ecznFhAvjocw|CYyQahgW z!W4S8R+;!-LQRVp4jN>ic1^dB@Zaw^I%58s3sXh@RO(e^PcaL(PAI-a-Gh$a?TCRDu1jT!7>^`P z4f;!1@U@TNx6pbvd;5Fm50hBoDwr7}6pGUGjyS-P!NuwFUo#!}#x7xeeMr_CTQu)|1bT`C(aeGa zH`BYg>s2+b6h6yWJ!ZOil7^4{Nsl!A2h5`>kscBNX>I$TUxgg7TXw z_BUsS=wv#kjmBTNi|)z(t?7~CXSRf4FO{#anFaO{#%vgtIp&iyLGl6?X$sLdgf+?( zNj@UxzB%Jwt2FhKlG$zdw3AuUp#od9)AB`oF&#{EbpiXbkNBlTx3M3Or?O<+JidD- zTV;`@LFQ3aSJCtfe~~3AiY=c1TO=FJ%~vk&h8sr2H_zXb-u&ogRo+D1{Ah~2!v7}o zO}*^gu{g;s)I=($N$9+>z3nc%nvP6uAXH7nI!iJ!b0g!G0VdS{4>*kbuJk_(t!6kdcvKe!Ox z%MK}GFMCXM|EjHF{p<)`0?*&49H5(P7^U!9C#S8OZ^fioaN!BZi0;E zNr)ULzmpM$?fx_6zGT;2yGCAfYRs_IPb~NPq!3n=AvsyT==_Fc{1HR#LcN+xH`a>q^DXQ9LgpgNbzE8dQ9nU=UZq+ z$J5nihKKX9Bk&$t-O(aQD|n>C{{ns!T$YJ(ESt)vNo;j|)Y$rfphn1fgPMZN!D8BK zFCTqc=z~}>ySG9P!5NYe38-d|ayT@^;I5+Z@C^e00ruU;Dj0n_$UH(>lu8*Whw$S!#2h!LyYmWsK-xsPX)ydkI z-=LT9dvL5VqrDQd*e?U2K{M4n2%7hsCPnSC7~Bykoc#OM#cpKiJw4vdeaImrMFOM1 zN{^Z?c_@Cp^{qs2^u|V(No|$20&qOxSuwo5qdswp7UNi-tajio)PE~ru>(;g1-kS2R*BaRAOh+p3Z_FT;otLTcBRsKI#W-oz^GptgUa$Kh zy6s#!XoKqObvf+P-bnTHw+dJ3n&pK;%k(G{wm73j^+|sTp%sYqwWu zLhTZy%lA(6vRhT=i{q%rhnlAKA<-s&lh1VZq^se?24}_erXzZPE74n$!r&LQ&(56* z#F3Bv`}rm4?7AO$K&xfKcc|ZP^RfJGi1CpdiOY$`{c?Rx+<}HC&t@s9Va*@$$}YiN zmHbli6=d6q8T^NQ{VLS|u!?QBO0OY)i{lk==8$oT&ixgVtv39x`bYjF!6L3o3VsW@ zR})b&g~ZWYmciad2Mb>B-{AYpYl-mivG3jO9D3SmoVaeilf*<773s*QKvQn;5 z=Oly9C&b91zVnN5lRD2xYl<2znn|PPl<08L)sM+o45wr?)%>NR;jV;TT8yw^se3na zzTLQ#q8`|(^5ded(#kbH;jEvMR~Bg9Ff3Iv98nWE*(KCp%P@C~v3|bnbU0OkR~5^j zN11T$So%Bon+@66CfD6mt-!JB;Ow@io!nxNI44uhGrS*P`*Objs-=fgPy3sxZDswh zo=+mKP=P&(ULUKt9{x%0mhagWRNZz@9IG2JVX(}&M2qv8h9W^3s{pOQbk`c&XN!9i z-t(gJsL_ao_SrHc1Cm~&&UZ^+{o0q$wE=7*QPmE@Ew(8UuVz0qXQa1>`t>owu74K4 zy^+IELf<7ntvunFo=}}+c`%z7JZW3CklJ+Ob8EUS^q$IuxWl;ws!ZvG%cy2Uat)!#cREw#rSwLA^&NiHudQD{ zn)_r#5KDXz-A$hTeB71kBOC?uq%EQMRH0vMQB_lMBjC8?xBFu;5`SNlK$(8-D#O?| z`~xX%K?xal4YYbY`C3;5qN3lr(%aVgWQ&J+kjv9APTYdpueRu>SM9V%U~Mc>DN*e2 zaJZ&tVSk4|&)4OaRAXBboA8>t!FK&Ti=}gsmT?DbBrH(ECykEjvzVvJlIe!<=js3( zQ$&sEIUH8NN!NDEB{M1V?S>)B--Ut!f&i_W9lb`8uo&(z6Wk54kR!BsotF@Kz=?L3 zq*hZ`8f6MVu=3GJ5#F0~VEjS@RS*?6UZL%{*;&D(aB*;m;~fWt!RXWfOBmF5%l(p& z;XF%`&^~338Ug=>8Pv^$+;eR0Kj07zp)}uQ#ipIZ6wNnq;xrf?4)}A!_~Z}AY1o|% zpiyPmcG5(6vunj|Q-c);4N~Z$*A+swx}Hs6AX}W15Q_of20k{wQs7y7n~SFay3omb<={HX~(vs`0idA?OYV)J#`l=;^tMJ zFZC`~)=9M2y|WXGKG9BlO>P`1myW8?T^m}!>lZ}b-JDub#9ts)p1xZ<6C((DU31S* zH|=g83hii@kVkTVsppe)Ql08mjcGRbpD97})c5?Ra2v6rvpz)n#`lr0`H4&+3%rJ% z5!fX!A)s73-)ipDJCN21J-odPtL$bq?|_X&pfuJ~353vd z(@i&?TYGl)2-63UQcBKa&+(yy+F2EUYvX8%sg$tk zM&+wliRHiMM<{j&o?iZ3R`6hzf9pQD<@IELJ*$nbR{rf)DEiBryJ1gsvU+E8FP%=> z9(5l7EMS}O3=X)A6w24z+KSy)@J$I>Dky#=jCu82e)}Dvg$!Y5JFmCjT`aB96(}5c-S6xSJ6`&|a;h+Q zzFc++UbJ<2w&poxGbbBzoU%QCyq^`=`R(cMSx;x!<+;pk)P>(ATW#m%#TKwQf;bo# z{v+(MI{oxR=gRe=gk_a5=RJ`E+u|Hu(zB=TKOTR6bQZRz_~vbql)qKryGFW8&q21o zQBQx&q4IRC?%Y+8-$}?MW2fC&UdP|sKh7_?xM8#YYkKJ5&a!-Vo6nyeuRlYxxv{5g z3U94q!u}qYd4}w7W!Wg4uP=HkoS^S-zdJp?s|TLE3oMWg*~rxkJv}HM`hGGrJ7jaV zbN0LEEBe&z4_W8;`FFmjYx}WgwVwIkIzlh@dcJnbU9Oe2b+!(Ke%rRW2)^7|cy!Xz zar{^6yiPXk=;YVkyEflC{{H+mOE+ZWN!os18(5?8!n5=INaoG_$S}{FpN|&WzD?B{ z+RyJRoZ6Jt5Yk=3h2)dyVuemCxC76QKKC*yjM{Xbo&4HQx%_h(yzzVdtMA^I*KL!3 z6oxMY_uJYYU0!5m3IFz#Z#`Z9J-t79*1f+pN~# z&v)onN|GJYjn^ zh*t6s7;>-J_pzzmFNt!xO6nQM9MIey#vqS&!fm2S#G3=+-l}3rmb41niT4y9n9d zmP?;}=AJbE#%oX`EYXtu3FX6LmD%6ay1EqHV!qtkf7ompxMJ@U65^p!a~{Gs*%}GQ zyVgRw{bb*Vg_e1_l_rhrv$!Z>zc@3&QciDBOTcv~Vx2p45PXFkyR}^((vLNUW5bsg zrDpHSgxDLN!1#5#w2jw(yBRu5NEkQ=m>@?_AQg?B<|eI`2gzD@@lAl6rK1BO6{D@; zQxOpwrRS%F`p%s{vQM3&jioa2)WnnYeJj}(yjw&27L{XK8BQM(GPvx98*RMB`tx2~ zWzH}rxb@Yiu^kz#rcd)Gbkto>&pt@Z$~iqwbD5hOlfHnJxBwR`fs13n#qrk4!(@v$ z_~RI}6Ts|5YazyLHO8!KCwS>~!84Rp6Q0`7Y(^5Oh(Gg+{rX6$qMcE`Zp02DZ3~K8 zWB$t=z3;5_TQ#<8ec~5&t#$OK4>DcXj|FaDA8i6>sz6;~scu&4Q!OOjVl8CaQsdLX zF*(*5#A!d*veFFBS$Nrkj`kcnt;jiviKC`B0=Sba27xO#iywHAw2!ejB`?;v%;gI$ zPQ9r=$HASP#-X+xD)V;2n>)vzBZD%A4E}mG5N|7Ar4i^D@Arsm?Qd~vyq}*5|L8iB zYHit$W{rPT1~SJ+?fmE43k~5vzG)tV%DUyRFn*Q*Kgq%I(i`1veFabaC?a0RTIt73 zXXlc2ZQAML2TgZ&E7K}AJ9-rd3jtnnlttB*TP-@5#fR?DK`oN0@S{geDqvL!x~QxK z6I2y!yYE1Wz20}o9i)s+zZfr1WP}C^*hmF7R8g@5juVQ=Ke`X)+(z#+l;<8ie&94J z^XI^`10fyuW2R&>1seUyFK#fTP#6dUVfXaS6O$WgXk$eWgX`A(#U#czKxWjAtCmd; z^i)oo)CL~RC>i2o?F~MUbj51v6h366rge9)du)RpEZEoGg404qz#RDzNda^4Jo&ir z%&99a)J)(Kiv6C3maFLT*N{YJxNB2$TKuhf8fscLb^g(I)rXbtC3ZXgPjf59AvDur zwk1XzTKpG*3wxKonmvQ{hU#N8&!ehblHND}A|_0D@Pj>OB!F$w-%!jZ+~QG*opzE} zj`2a2ICPTS8Fw~hCo!}w<<6Ra#s*QjfR?ehv;k=)n>bDs?QB#zW0--y!Bgf+jap&D zGK$K-(5*idFS9nplxe2FR_K};*RLNm9QW!PZ#}5sknT`4t(p~;QYsaQORQ8j89IhnVN zdK@J>nFE#v6gPc>Ph}NeML(8)L=$T*%3EVV))0@yXTw0?CmlN0VE?j-8b zQPTLLGxMW#*StS|`?1giGoaj;|IgflCBWqeW< zf90IczW2ay6xCKi+1=r&Q&_gpW+s1bqwxG^* ztum^4#*UmTNds#yWI5ui({kBmf|^I-euCV4T}U<5p&Q6vtdAqkTDAsdU12K6k4?oN z(+`j}q!0=Fp~aJ55fMzNSp0n#CltSM;&0nJ#4dX%`=IcrYGo6~no*OQAEZs{2I{=0 za>ArKaO{LVZ)$ru?&2LW%AbOQ1Xs0t=iRk2>0+u`=Zpw`F1b_#{puty$k57t`A^z+ zlGC^*+wy*qS$fk^{xSXah*v!61)(AO*1S;`d6#09R@M!!BLb~4E~tcri8C%&!=+(n zjlP{uP_`i}eo=QQzShB?QmqY22qWB(wMQ||_Cry$%mXi-+8?9!&^Ff;1ccM z-STq4%)QytV%yeiYqqFo-nmt z2fuh{?EDpi{MTnRU@HQ43YreR*U@khXc^~6@asFxUWLzbn7>i_vbH+s@FeqxaA*FW z43v7tb`5v@eWR)PaZBNe_iYG?uwjk+ZIDa-;*k^}fi2DG>-(EDYsfyr&q)(kx3ydF z{GqrU@gM0wz%h~LPs%~sRcH%!kn`w&{Shu(?Ah=86}{CS%4&A;p2mmahMJprBAhnC zXN+9UO^It4nCN&1l*AA44?zrxeXKfd`_x6Nt^53mSDYs~MjET-fJn88kmKakuuO@I z;ldmqjDNj zVY?PR{=i&&C8T1Xs*CVd5}TuFTt||ogFU(qgM?fG5<2v$Z(bQcYR@}rkAm5Cc5$AZ zD%Z&98#anuB~X(CrNJV;1Lg8sn%@MG4^_{6xW54mY2UjTItFP7+!~w4AvzEh>%g6} zYM%MTS@YDO1MN)jG`=Q^=>GnRv!T91mxCKz6H0;qxp|k1wz(X$17+=yyQ1*LyD?`g zBPfoNIm`Dyzx<^IBqyka8H1J7KGZRi;@XO*?Asm&F}G!(rOv{h!&bb^ZpuY=x!I5H~5F$UV&8zI#6A*aG|pho-y zcqi-`lADU4MkJ#AMJPz1BUb=APbtn`!5Y9Ggj(Ir_49BHw&Q^nJ5M-|7xhw|a{51U zX^R*nx-XZ)97;fLf`itm@z)Xg@+fmdbglbCfWuWZBB`#TQM#U60roj1$`46|+ngM< z`=``$BL`H8rB-@r5rJ%`N>#b9pT&`+MV3sv(EQtD)D z9ryeIb;tn4Glz^#{P>xyTLf7yolNwZEPd_aqSJkArNqiLr&-O1;+Dyb0@z#%?D@QR zOOd)RM=3g}fo>{%ru@E7DAA-HXn-$2nnv%HsC)Wa)Z>M^C>{{%C?!6MpWeYt>!7Hn zv!!+VUXwhc8{Ug}rZj34=ejFq0(=Nh%JH(!OjTjo%y)EX7{spADVXQSmx8)M6)Lin0A@UVQ7qsem%Zw zPj5tg<1h%fi1_&mBdVy}{W=SgxG-3!A2>i`%mF&bYOr9@#9pu7D@5wgr>vDx?zxE) zty>%pzkmI=I0wGB^AUiH+Q)HKZFfqG_Aj62>8kAGhcHSpP7UQe{pl@FqAYpL=|A7J z+Cz8hlry;1N`6ptcO=RaZ!b}h!k{GqS$yB^-n!_AZtRG-LRDeLT(uE^F(v@U$Qv8z z$vG^)my-9YSLwEQ-+L(gPl< zpam*D81S2Szy1s-Z!BHg4M+u6pWez;>Ke}e?WRFPbH07{KX|TFGq6O3-_3LFip?bb zg&x^3>X^ybtD#>w1nvN*zUoG<%7M$?Xq)~)eR5AF#T zoOEI*LQI#sq&FjM@BJxk`@6T^gS2OsnR%dgED#)}X zhcY|#SGOnS>@4L{BbPlWU_s`s5X_1HXBs1g_L^^BKlPsk8@k~BoPv5ZH z0Ub0OfyeU=Qe0<=vtfHXZ!zv`oDaQk+3DWj9+5k9fpVqwCY3mX6cu+ak|FB>>&z88 zxzbsh9LdeEDS??hiX;%Q<1M3b@o`%%f94X3-b6Lrb>g2*2GP%T^FAn+4E7AeZ9j;N zi^SVVWgyf5^TwM{@lRfSdRwl|xc8H7Tze!hx{*Ts(9#v5ri~>hETXgB+}Q ztGKD6qs1QEifXn9HD31qpd~Sgdzd;zC+YD;0lD`2{tucun9-qrKK(C4v;-qXuGsoV zTl&5$HHqz;q1NI#Tb|dvob0#r{i9z$FM7#5tahxplO!R)oZp$PMzJ%L1AtVg*8k_5 zD9(N};0(IGf^@!3PD6^}H*1M%exlVy-VW3+oS|3{MDpUb#8n>_k-H@6tkXD?V+SxA zXq`Q)#VxJiA7q65@RTU>wL?`?a*AjI2WiIK{>BB8iu*aBiXMnIph{e|f_bvrf$5Sr=TWgi)9|&NHBgB&3w%t5d8JTRFweV%0aN>sMN>@mxnVaGx!jUF;KdQ zKG_&!Acn4668q58G84vZG5F0ZZKO$ad?&j;BIPsnGA2!eio$MvOp57Eqrd(K^38Y+6JQU!%+0w$xNpCCuhP zO|S3)frbQDbnG9R)CG9zw0{?ube8_ML{hc-dg3efb>?0xBjzoWyv4y04b*FV4OFa= zUQ(pJM#Ad3%y3ScWfaYuuegMkkAaNt4cSwuqiR0 zv3XVRmsI-3er=8Y@#7E=?UI|1CD$5?3V4ltQ%?v0)+@QQlWMnSz=KLNsB6QqATwl> z6)KT0H)~D0@3U$y9rhq?&0F60Nz*zaMjP8FN#RuuN6hix1b2zWksZh~V?=DQo~(pK zrYkOML+DIas}hEHV~N`gnDFAlo7e_y&r}`>whlk0TQ-s}m|kYRaU%o#fIt zm}TAcimN!*tz;j|7wi_Md7$47TUAqyd0kg5EmD16!_)A@P01gDwcsE_dc`cT;aAKe z-24t3>PxQ@miG)c`FTju=<6CD3?NUyChv;8S1LXoS*_ke#u45}g=$H8nCJGH?JeH8 zy^4~*Y?dYdxCFWPa@Tq=fD~X+!4TzLzgcyl zM2O}^z)LdHKLoUpX>8p@NJPSAZ8t}a+OmGxKcz@h%=V(C>w8l82IpDKgvRT*bJAON z{C)^xV1NJ^pkWk&pV=Bdt0A^CaeA)I=0IM?f(JkXAxV53{230R6>${3z~X+-vjeGT z&7yE8_RZr|;)Ndp2a>S@cmyR}i5k_D87MV5HVJxf5XF#%#RpIj#SrAynaYK&h9lz# z_+}^g{)zv-zb*LwYFFPM0{OTb4hBLTcmw9B!-wdpU}_B}TL26{SP6NzId>GRU%VHu zeAnNYYBHG<`vME;tijbET$X@hQ|B55KzAnK;wIoiVn|AWK4E73_5F>SC>ApRaIKfL z$u5}~3JJ4Oq@mFFC=Z+ItPOt}YvZ+AFwyI3JDa9~Gixir(i@Z}ZzM1`#3bImiA}kd z{FYu?-)vhvX@bzaJ9FrUOYDeD^NcM*0G!lyk;hz7mQyCqmwspL6&k{Ht}52-y*?J*B75X$PK?{szId?+<<3`j7*d>(;)*n1gRc)7l6VdV);86c9 zauQrY)}JAs)~K#XmHy)GgWr#*g4xl-;74{)9qpkq#phvH`6p+P&D>BSX*ulon!wO?tH8&NK?zmVL15O)zOgxoj9);8nsYXw9InBU1_M$a4yOr~Y}tH8X|r!a=$rPziNtU^yI2Z^ASUG9Ef!v(Mpn zKbUrnj?Sbv?jEYbz!QswO+o@xlyw%}E=AW~b%fi3n?1myV#g6v0C4l8Gj*<5Mz1={ z1FDs0RThrGkDF)`UM`5d9>)?!0P!o?j)ZNn=oTI7qtXs})j`4|tdY)5Y*d|+wd|je z#e+eGG~o{ziCt&ay5elFn`R18>ArNw=K_RN3+U-mWd0+|vM&;vglmtMw+@zBqN!F` zB*9(tlkmq$NQ$)AVr9PYTEJqI4>x$5G(*7CAXELJF@{Pek}CGl*L{Reh0n#oVm3T} zVUb-mI3%rwjH!hFW!8#3c?r1ZsC7cViNYC5V;fTC_{kNCayoF;O*Op8h{9ct_U*3& z{^nk8XISdo${PmyB-Qvz;wg9f{V(1d8kA5sc??C}8df^&|10QZiSVw;4o!{iU;h5YmVk-;ab`f-oq6@ zyd$nGI@BoT%AIN@7C$d&QikY#ks{A3nkY-@;<^&%=_tFNe)@*VXp}n)lhI;!n2f#+ zG8(KLba0^Y5#0l%&p{J^U_tkfmEQ*G#thp~26=#oR^v|NfkmweA|_yV+dga?6)t~o zhFfw-)VuqEM0Nm)>_8=aC7CQU)?*~Wnp?T%zHF#(y-E_h4PD$A8R)*1KF|a$>AJXM zuD`b2D8?x~)UQcW=iZBURub_TE;*G4Ewv>jf2zAq;kg6hjnD|p$i#vAzSTVkh3TbM znA)zLJ@pl%DF%12+$tJxQlsM&l4{Vtc{~2%U52aGy?+LHuMBYDVhm8Q!_(Q*4K`Pq z_na3?=&Z4Ml;8%`dmF|xF}yY452Wfl{FyRtg+X`iR4|`iN`VAy$)pt$Z&IqmA3_d3 zn;m?%v9rE@)FSAWfM4Lpbe>*S= zV&kG8n9nvBBL7N?rCHlJRL;b3uBAG|x&Jdk zYf%E59q#_|%MwMA)5pe{gu0buUhHfn_W${Ob#fgr6j+R<&~XSnacb?PT-xCAStb+U zbD7C#rRn6c5_4CfGLz>m=Ty6#N@sOM#?dk5(6^@#h$&M|hk>3g_OEBN_+#m`3mA{{ z=d5lMA$}`zQ51PI>R=iV>O9ikC3tLhMQOuU3^dabFgJ2&4a99xraJCnh8lI^vzgTl zLmQ3Xx4wF+r>~g!yS~B?;k3{L4ytyEpQY0zXJ4PriVjGMzhqqo?Ri$b|L3T{Z7BXb zs&a5t>PaBYinN$Up!r_vrQ&H*ZLK%qMI*UNl{o2e7G7rgWGH7;Jj{PeqkBin$6t*T z682UsriRllsfa|x&sSazA~aNeN9gA}<3}cv(K!B3)Su2XnXSBikX$q#A%xKvrh-{i zcork2+Y%2fJm=ULcNJxY4CqLADKlWTA^IkgurvD`$hnkw~3;d+W4?ShOyNu9D_TW2kkHKF3?&TIiM9h*!8DXp~5;l|u z%Zh}2y6#JtFFj7n_)K(kDwq>Zsk*tgv-{R8|GR)NLh_gFx1WoY9+#0N*Xj!uQM>pi z&$_x5z&Z-0D(5XQnQk%m=+c(W0i=;C4<<~9*){&2wr0<3=lflaqAP?!r|RQPX1GHu z_!E{wl6?o|e-7VcT2c&zn<_>^HY?3~dz+lhve;R=)iFKaUo`0jXs8hQ9_KuGDevW+ z@BZcrnTKZ5{N>1vKXYAOa|)iGtiQv~egrUBJBYa}lRsyRF-BoWX1_%|XZ>lHxyFx{ z5e*?$avPi_uzM@)&}#NfMG{a|J_0*SuS67&iDdVL3ZnTY{ByJ!!b6wJeRJff%Kh;I zcDl2)LH&k0LO$@{S3t&gR5Ej4)T^RZk+BZX1ap!fDWOD3hP%2k81kU*7fPpP&3@Gu zcuCe3!iTQ(A;9mySk%*mX(^E{M$#cX%A8G4g>5&AK&Es#d}K#wAcR3eck}Aw z%@C-PUdeccM=xQyQ(aADm0Iw)FgH;v&LkOyO3Y#avSZQ5QT2z#>J zeTgUZzqJu~Tu`bf^gxxnVNf3nIXFu!A&UssN4am>iWZrmxSmYqPdLnUv(|*@>nlH{ zezN*YP;|}Kj;z?s2Vt81lMT%lXN<~96JIlU&MKpsV!sL8czESTVYHJS*&=2}`k7VN zWuD7TF2kAWNj7ZNF_^o2xgk^l`S^imu$Yh$WVZCDg@4<@4E}YlZuRMuM5$kEh?;VX@bH1KJa2>=+rZJ2G03A)Q(2 z9CDho^LyA>N(PT536X8+W0+E-v^CMG75>Prd4oxkX+acwPE1z$U=oQOm__=7S)>w} zMJj<=WYj7n)DwT?tJ1*^m_<9u+L7SjBw;@AyQcNMZCO_wScLS&cXg<&p?=&Jj#UJ)mtW#8j((ykN?Y0 zayhqvVIaTYjkJ2e@sRAT^ar;EBymT&?yZ0i)<-3+g5~|v60<)7?tAzzoO1Z#kSJIM z>1r4`Ol8k&_?b#TieR?T-j2#%JRir`PbmJRK8%hudbrb-vwpi&nlwH3D`^nu5t*$1 zKgmg;{8q$4^t4|pNav#Qt7G}yImv=PV!_e!tST_gDjckwvk2AF8|0pL)dq(_@5!*2 z7%Ab!U_+$9&Buy6Vrq)uipE3P0h({A!L`eDeQwFdNuJAc4In(9>Kjlo^3VPvxIhcT zA7}rAT`vC;Awdb>EM=dZ{NhJY>3`q);yq-tCY-)dmE3ApqdSwVN)vj75r;V`n9zK1 z63n0uLIE0`r5WYFL0vlhD`^~NP&dJenTudpsc{oK1%8XLLK+;PVJjw0X#Vg((=3-> zz|dP|BrbWIk@hp_=f<{gu_TI?$H|4MeF$y_Cj1MB$f zZiXvSSaz>**nu3Cr*v}!k3HrOP2nJ=;>$x*KoZLb)v(fd4%T7LDJ|H1DUxiHWLCs; zCv{BS!%o-1*fgeTtNggD&d`;m9(GYzzZ>i3#;C$^k*e^3QN`?{uCh_Hlxz=NK^Sl$ z6U-W!!Z1;!rF}u})`|-*05s?=R&UF44oYr$^;i1Eg6-E{TV9b29mvv?4@;NTn$N&u(#>s3l)fiGtjNcljqsJ`hqzpy|d;_<5xk}c#YhcBf(-?Z6RkL`NWOiiW@#Pr3h}9 zq_VhbbS$=Y)sStVXXd3@?tVbdK4~OeH}uV8?=YK6v2u~G^E?)UPxpFqjVd1bv zuqDP}p@b+t6bYLIXxNt*MCppWUm&X};V*fR!!4$1_#`1uFG@rXoO`eUb=N1AHm1P7_ROsw}tr4waPa=WbG;hcH-e^#7aS zDT4`KvFqF=c6IDXQ=0zL4K!!p3(MZPuRiWFoEUwq|DQgFjISm!0V@hEYUN=3n7I+p zKj8r9WAGt2aSPN}4YTPxe03|qiCr?}R(ox@gN7{K&<$I3R7iQzE?7}0f#}f(SKJ6; zQ09lSUQ^T=KgP)*V!-TcR)1fhuBKt8tJ{+kFQUiWi=Fv)6cs~F&DkfE4&YMVXUYa=#GmvYhzpgYG_Y6v?uKho5A51- z03`vN^0pM%J}2$rAdKvsvAHXg)bg|dEJn=`09H~|w<K zMTkn%tlkVMlIXZyAf7GsT;I(-8bhcWBPlMkFEmO-t!{v+EoMo9w^=3{v!uXCP3<0y z5tl@(2~h>wxuF_&E}5D9yZ$=b zkuttINgrHErdl-E8ZlYZ;x)~bs5tnaJFXZlOm^a+#>|S=Uh0=v6Am9?Cw~0Un5OR# z7@V2!tgMX9Zhwd>OaAB?k}7y&sDW|f%b+A8lo_GXmGA{N+jk|8Kmq*+ z@`%HgJR&2xj)j;K(jVtXV6goQ{KDZ1At&~J*ePb%P0`^SFGZ?T^+x*HMArl9Yp#>S z`x82Gqz%hAR0g9+8@80~P6SMUI7sU<&&mx_n+$w?9TybAhE;<4pf!7RjSxPf(CpL- z6RU43iUT_f`yW|#a?6VWw6YeOsA-?ce1pymB-e2Z9R8<2uwN4;Z3_B(HD=G5(&r+h zCa-pa_)ul6C5kc6prO~h>*smdwZ!V>4r}60n1faPxJEDp&s<;gDKiozKZ6Mel;YqC z)E-^VcoP$DHMfxF#V*>$b1YD5utIPftPlVOsR>pHj4>+&%V34zx5nJY^InY96f+SO zO2)cU>=Iw${La5+knOE0<%%yls#*3eE{jR+Q~f0FhA^0cIEk8hG{C#W(XmnC8Kr45SdY z+il?fbLZKjxZx7hfMla&Y2qc}rfE5yF0i@Jlzye0rGjcksRIhYe;an3^|MNppaAG> z7=rvkuGysmSt}VOo=yM?KqH0b(v9koMkr+)ItMnZ4|-pv0rV(EFh__=b<>UaN*qwe zv_6;_bv?HnOfw~l*X~Ue%co55HRNQ3azC zQLB6ZR(tv&0auc&qeT{wA*glex*##vPo09D7&}5(0Ud7KZG`6U@T0%3`5*?*)%d{D zRcpw1#Y;PIY=lnX9bz#}W5nNB0uMT@!z@i3Z@B?m8N3BmsvWtC;_5?H91 z+QKYUWVq^U;np#&o`LxYd*xsubY|?{ixtb{8A2{(MEQPHuhnu+KsIYHD$bqxq$KMM zJALDqn3&OQ{Ct*BrJ5yYs(d3XjKxSM!=R>nWPV@g2RmXYLYh(>gn|{^*jZy zq{=6~$s4b6hAj;Ca1dj8hrdy_@~(TuU^hy|7?Qg7w=4Dk(b35afvwE{ZL5g63A1jU zXAmd2^}5Iecm@&v@Icz07@rVzLxlO`r%}=UAI28SabKNTKWTFqkAwB51Tbe7t&oY* zT39TE0`-f8jX(>RAFMo^fEAUiu}sEQsU}U3#^P#C|30B)dGStv4bPYodo#uuU?Z%| zBO+_Vv8`{qieT~htuPsJv?xpOGiq_AxUElWu+2*XuGX_gSeXn4-~&N*ed&{~&z*=cpRv*-Yp zfj!cP)Gy}A3y;)FTykCaW$gGZ3;jllS(Qn=zFTK%IIN7Ye zY(GEiAsgDZ{wCWI=6|`faSoV%fqdBG!;@d1=QdV^ZN8n&?iYl%o>sMO_MTrX*Zv_B z4t*E4d-7{>rPf;E|MQ%Hr9%4Fw<}DGS=t*dZ&i*HuWW{npDXc#MMS)m1W(cmB8Nwd|-LVmIrrbX9HvYJpL)G{iu!vwaxf(3f`kU+{Mr>SS{19i1Yc$eS z;6$eTZ;0?x@+cTb&Vd>hskou!_jU29jDIIu7sO{ZZ*m6in%(2-=CknsriKDnQ$yu= zv38A?W~F$LAR|$+YPyHA21L2rGN+g zEKj$yx5|2Jw4z+E-){ZU+7K^JXV?FX*@5Pi#T0Cfy3DN;axfCGXMHJ9DpZJH;bR zp^6(t(o7Vp`Kbsxp4N+kK3*xr;GmhMLk?lW4|buynB^R?`f(?)f<_C?isL?#5W5;7 z7Gd%YBj#O=5J$icr_R*~E)oJ+^t;525S9F5xLesR{)7PwFpdp_7_dDhs?+xJ$UD~v z)Mqlc{zeiV%i}@}0TIIxkUQ=&!eCrA4RR3Gd%9+~!Pl(ijIw8Mj@d1$> zF*w{E(Yj2%e=P~a(x`%z3lJW{_IHPFX44*r(!qM;LhktcO54Ey(7O6dku~B1J}6p$ z{jh75_5N)uZp74VU-yr8%TfvikZes_)8npW)l}GKU>|7g0L8P-^j)ENX%4DbO&{4B zsUau`r%7Q4%{MKCw46j3~m|B7g&_rKbSxP%BG?Y zb3e@htgUzW_uuLO!fJGm9~d9AK9m`@ZGJ?qQp^=j4+ad*6vy*qH6HX}UR5-JOZjA$ z53Ho-q=F|-+N8%+C&%k8U&%dg!uKr0-)2vp+Q#~)<=(|*W}b@vcZA{H)*fCzm7Q?y zmD3~^z=T&rooe1E&P1id2oTZH+acUqEjDr-6x9q(Ka>WI^ILy+pLk1xrBP8-b6y(g z@pegG0KhUDnK9RY8heo)ED7fTjOE9Dz*r_)gTXTw^_UGMJMhef#BsLbA-P4$5_leg z0U#Fd?tD>J^e1cBF%IYC3VIBdCI6cU`Iq)BHOu|lr{-3wpe)#3l?5^hW)N^oU;@!S zaRTX?xUfsAc6IAuxle}gjoEngA*pE6HKPEqMG^yBeDW6IT`l8ZS^Ie59LgI?uklle z4kX==KF9@0w*q`Ly2zqBY5z*rrKS0Qk@e=`P_FU+xSeb>ma>nrWX--N`%DZCAxqgR z5z1P~zLpuvPO??DA&Qh_EoHKnFhq)MVJv0e)%Sj;^Z72n-#_QN&bhAB-80X9zwg)f zem?~{OlFH(PUft%yLY{(@RYJJ3Elm}OvbK%kN;m~fyjZQ7;^ou-b$-J46j1e;~Kq(PRCLR3@na%COvB5_Yh5lE7(> zXi^|;z*UILkh?{`h~uS?+(<IC4~aGN>7DSh{+<+IuzI@nm= zlVDTu92+|piuw*an;{RX&-*FNoztU-?#qhuJ0kj=bg>C*Cycr;;C7!{2IgFvx-AR#wG z4Vi$X$F&}`kO_#dxTy$8XIiKqXsiNpO0fr>Tnssc0T+R`YpDmRm!|x3d&Nn6it@F# znFsn3{gx^fP6{9tN(N!PcMO2Jg1n|8C9g^UUs-sdxfK0xPg|ic72$Vvk58^s(2HVC zDQ(pTdl@)NW&&O4hpA^0+d|@mKMU6fMLYIp7Jtb?3p}V_(}D8Im!K5o@qPxN?Yl0q zG|6}$Skx9>KPbQCV&j=%Don?P6H@%oox`V+n!-V#_VEDU15Coy%c~cG09Bf{S-vVJ z$(6^Y7NL5@^`dG~r|b%TYBwM!Oe@B*r|keC8V7mdwk@>%H%WY6y+ly-Wf@~sPXI;Ym{LF9a%g;Y`^Z{?A`Ot zv*#2>ik(9LZ1}n19Hor^Kv6H#2mi+zRsnBuS(a#@*uFFQie@2R1`1zk?XrB1gz{}t z&-fkDCy3-}&KH=qh1-G-Q!_y?V+g=v#ni!DVSudDceTesWDv3i)h|KDW34}PR z#$&*FKPJMFUR!0hXT~RC9y&~f5XV$cErkBsw^|!#-Cq^Ghnh}=^Vh7UVf8f620-J$ zFzl-iVb+u1*`@mm8dGE*^1LR&^krrGB@imQ1VTRV0@w(zdAiy3b24)77df2X97sJ?o2Y9K5qYT}k2Ns6 zKmZ*|7Rigp@7^;2bP2@bF_eUXA>>C|{GWtD8quH81SAYBp0R+8KXb)h1CTH{S$@pO z(hlMQuOJ!|=XlOy?De9t_$=(i4YLN=f{5dle=B(O`1H{Op+v4xp36*-BbTY@dH`B9 zOf{*hpCcjCHEU63_|y$xjR{itW#?u&6k|xg4ti#at_Pxve(gtpK{cosC1@9BFTN|# zLo}@i`~aDjz*8;v&1=0sR3GE9DF)7JJf`S7ci#DIfD9_+xl9Bp&tf#hWCFSsECWw- zUauIhZ zi|xDN$tm;sYWB>j*YOhF@tgpuqPRSR(@fwHzXZBZANr3X&?kWr2Q?BDB}}se4-PaE zWSs_19Y{c0%k>l4(L=VXAPS%sy`rfwEattV#1QSM&fJ*)%7|+}$DFfoY>=|yay4TI zTsBhVb}c1xHAjJu*!(mvS0`6OkGp!_^zKoLT~7w|wLT8gO$chaKqXsVe-9-aS1ot=WS0M$D2J40DpXLUV$;V19x;pXV-QZ=n~oo#hv$uLujfadBDQvFv764g~HM*T65Db0B^kOffOzKjMCqxG}{#?c@B&>@ltx;t)oqqxB;4MzBXik1`L5?PTwJ~9RreMXo ztnh`mvAyq`(nbJq$wBall3rQ9 z66U8oz%eTJbi#lKst|+VX)<>%SF2C1eiQJ@jYvkSX_BmFgM%d>-P7*!<}fGh(w6Z$y;z!vu(peL?et;A+0h@01upxiQ{-!tLB062PO$G?=|q{;qpll-7maBFvN zJY@m+z%-OQP8>8beYsONX-ALt0PdSudM8(?c#UKZ!T>Hbch?{Q<&8j%xS##KPJIZo z=I2a!StS6{j3-l+6Np_#P}hp7m?$XT6#>UN|1}q-X)eRTm1^zjqyZ8OpiK&_@X~Zq z9TaTPhn3dJ^{YG}KgDM6d%(@5ALl*=_x;r`6~Rlv)Za>>OShaee!HhYy+zeULPGOqIY^Mp+;YZ5@9R1#i)x73m&|kd#k@iB03!>p- z0O7UY&Omw`BHnxQs4LZ~PIUl*OkPEJe3IItw*3whz=+RAtlcSJq=WPPa7*x9H!aih z&AJ!y09P2i7d+x3EVt#)wI9rcl-Hng@fyCt#+iVBM_ZF}jf&{X*Q16JFUq4YbUbwg zJ#Jp@c%9onw1qtDA93aUN<}}X{t|7Ds@Jj8Gl#2P0R>W1Q%xt*lCqrD3^_vbO6|rh zh_g0f%?q0%iS=)9y{jh%$&u7E@LDw0TA#KzTNY|3!mE3{eh0>U5zC4HLR+1?{~gDx{JiCZxn`&4Z@vud-UWPkKB>B<1_lc0o~-)D+?R{vWwSM?s{tfanak^{<}+3KqLRm>?0?l_7*Sx-H3X7 zFi{=#=TF(i@~0_{cGAPTfMI7r_vrZ5Nv95+Syi6nkIqe$s(*_C*OjKND(|Ztf#~r- zwbv2^`Z;80ISqBD{p~NP-=hf z&7&CzKiU~U4gTL5ENz}2ezZ$s%}2sLmt8~XM)TME=du+9Wz4*$E*0`@6sD>qVflX` zGj{m$FeE#^+^rh0L_NE_WFX>P?DvW`Kz8Mk)2Xi8uut?N;yH-h_VrR?oFw_F+TGa9N?w4 zBhqWpHRisAzMVDQvWwk3n5rKl86%5vnTAVkjM5LoEm))p$>Sr&1*uaDaok_e^X==W zivE6-NoJ5%2lyzUwHTqFxENzoV3=6bl1g@CNFaXnN;t!5gWR7hIqu)cY^^1~gAv~f z;8ydi0Mi?`sI`h{^@25uP0tpNUojsV+>%;YyEEOIVqxZ;Qe-5|{6RO>|m&?(R@W*a9V z(Z-&|9)dm^2(t-sR^f z2pYn`?_kcEea6{a8-eK!2p`EO&tfm0B7FlFd(>}J0!M>-P~CSi_5hqXVOJ*AGvbV> z<_tF<{S^uV;Wx>jukhDmm;N&{<%!UIblQwD;$z0M?Py4W)+>LujhQ~#;{!m8BX6@9?h%UM3jrI5h@KhNU^)x5@CnOY7wC%b8c{U zj-V4?d5!HF2>)a;ZZX#MQD||A6J9}4H5g&0M!tr^#w8!wIZ3A1@1{aas2PHpL8Xow z;x+Voj_*=%n5m#R@%A9O;kt3!K=ci#Pu>Zh?@kP>8?imZ-B?C*hO}}YFgXWmHCl5? zT0gXV^SozMpXUafdIpmoRjMcYLUO^g?FmXX$4t#O$%FEyoRkX6n>2~d#7lWOo%}y5 z94GA^%)*O}(D^z)RX^DotQ6~W(!OPLrO=TAjOg!l&7YZ7a;;^u^f|q>a}yn!_s(R? z?tToxLeCQK;o^HP(No(OUSh85zdn}N*>2ik8t3#y_`P!+v@{Y+|c z^2Fm5P;72I>mwH0QBzeMKlF5Padr7p57`+IELlm1+T zg7GdK{gV%$c~A4d?tbtp#S+_OrLWLzqx=fb`(fneho=r7_av?!rdodY0smh0lfUE` z^*RIdCRA<$-$_}S-E{wb7S!tohA+j2Itaz0nM36a$Gkk}?#PZij_U(+en*&WijPv2 z@fRg%RhkBddeS?WHG&61c@*jVj!ViiR|8SSHcVM#VZx^;K_`bmyRNBm-CY9ND_KF2=Xbpmak&=o-tXXY`aw*u$we zvesAPrw*X&4CM7X9KV8?y)0Fxi>P~Gd^hAfQ5*3h;Tv=(WMN^)M2v+jKNjffpTh(}pe&I>Ucp#=S@8rnYlpZ@00696+Ukd9nLjRIHr}AF7O0=w;Zu)yqfsu z=)m!FQN`Z~f422R|MEHbp5*CQpf5&IzdGhV=ab%x{MRe?BUAiqs{xxUZ}<9fYnw z%-aqp>umpaSDacM&%&UB%(ANv@BKMTFO-H69*bv2+qdEC5HS8br};0Wpc`*<;Ouz1 z31q#Flo*Z=%q}|PE4k$eUu7PjNvOX$%7RvGc6H~B)7V{JfFVfoyq3H@Z)!&@rAhG? ztjZDEUdm&xdq#vu@9>BF{6^U2(QI{T)CfmcfSjU>v*P~1tTWn62gB#Gn1*$)lG`01 zsh-d;xEqO6(Mf7)zZiL%IYtrlxHnZt5KFM|y8AhyDqTlhHrzbmd)7b#!&2eM)#QK@ zoLNDh){pXam95l2Ex)6B9=S1}YqE9EkiISCofYt~nntp*p1tPcet+f|NIPonkD!z; z8Gew|(#uLTF)x_c_6sO#8rGki{y9_hj*kG+WD3AKcqG0pNii@5Bi2^S1a2k2nf&_#6DL^}44>#kZ{K9d8|KW0R<<^dz<4lw8)ZC-6G)^M z^U=gQXv|f@4c08C<4Kiy$8JVSJ4)YpGXq`0BS$BT*gor?zz6|wPG448!q(;Z=xhN%lWZQSny7&? zpW4goPn>i&RYt+Xkif$LC@$3K(WVWmpwmFStWbk%u~4g&K>UVIyAxH`DF8oCi@A4@8hSTvljP1^h7Hzgw6?L4{*4faZBm*z!R~?nV z5X$)dFrMHufXsMvC6*W8Y1>!*F}z(tiY4(ONF~~5WHzI}6rWdHV4Cn#y2KiZov|U2 zcCP%)WlVmT@<;9V{s)^E(F?j0oL*xcU5u}!Pmc>{W6y2##|aA+!M#r-1Y}+R|J36a zOd6sdIq`j?uICc{9~*v-u`8IZ)F+%_PP6cGNWj$eB=YK>P z$b!!mZ=-R_Ut?jKDi)yC)tf;nsY7_4Q@7-oO~p%?uIrUjt++h+2SyI_fbfz(}!IKE`q4TN8{r5dlRUH2A@W+pwl#%~Y-JIX?9G zmw9wbwG$zRYq=PHR=4~Ua_!Gf{=AknvDa7x;5!1xoldYV_U6INl&*~=tX>JcNq`xG z;B|Ze9e>ce)<9izmZi5Q`Rn(g^!@J-U*87F+hiJ<{6-#|5Q{XYbkA3@6J`#~HNWqB z_u8f9^{F~CuT)H$;kCw5Pg#CvoUK|cfu9n-L%HX=Mj6=KJLIGU#YycUzFk6}i_h)?Pm&@+KiFCptBExj5t39o zr6SwK2R3ZFU!|B}^X$6STmZ^*TPjvc_*5AbG6c&Z{)#sNSA3O$QGW*osV>HvEZJ6I z)v=)2CUnSL0szV9ENR;%5w+|FxZ@D-* zjG^_!ICi6$FZ_zZ002w2(cr8J8A4PyMqxyM{dVdM^s;l_bm2-U7n3S7Uyq2W){@ga zYI&bLl=CKtu#cmf`ZJ!Th4S;R*#)6@q38#oCKL>* z;isPpn%n?=)QV9|pex;GcK)o-W48-3xLlRb-Wt=4OBVzFWFIaHnm2%)azn!pYjKRwdPBI5- z({bzzz(GyOsyhPCX{sF9+SULj_@7swI3so*W~7z>T4YV)be8j}#DJN7YOhO;;W5^Y zQS@1aMfhhL()_7t`{s<_*Vge*itU~)&cMTjaiAQ$G7<#)&w8<4MEzCJlT8$R&D%-% zl_smjp;-<~AQ~(JqlS`BMAlZO!C{@3iQ07C(Qz+fO9_ zMzy3~ujQU_6eD5fv!45pOI|E#G)LBKQ$xbZ^)|%7vcth~K$Va+U9Zkm3DYDTvZVqo z!!b@Eq)x~@{e8{N{@Po7fb_+Y zpP@qScjCUyX2NQ(&N!hI{pk}vd~QYOzUjulf?>gdwI;77cN0ZvxUPIYR^!95n1|m) zDb~EDrqG$x^BXY<;J2Hxk4XsdEEI8qn#>9=iNfju7rRyaaeBxt;U`OzBTTmCatylG zR-6RK3>p&{s`pfoX%J%6MN&jI8i@JXjYR{It*Lndr|%L)3o$42qNJ}gLo zMA*#S3b#iF5#1^ANdM#u?(B>~A;;$`$`Vd ze(7_S0j>h125+vXB-wtn7IjM1O}>|>*qS|)B$BH`7L5FUYC6(jjvIZ2%I609G%qyt1YV-g^PjE&;W!6=T{LJ z=fLoh=7m|Ci(x};C?iN{s1g~d`)chXSl$lO}2P z^0_%eug1aw@Fsowz`a`FnP-3>jYS6-leA2HJDhiQeBDi8#EYuD4k?jHUbI6eC4 zhpO`%ePy%DoHvSj!s@|>U^06YZjonz6>3p-lFZZG8KD%P|1Ai9&~{XUG$22q0YSoU z9A2yFfw5Y)IDvlMsZO8J;s>sx584~Y6U2t5KP_Y`gPxXFanfX@Kb+h-owdMfDCBV!3@g&i511D(Uw3a639Pm%h-eiNkR9Tq z#vM$SXlYD5KiMxYxhLYM`JD<^<5a1F;n|CB1KP=gBMpueX1$s>ffmz(RlMZVoS`n( z!iC*v^FHxBU7oH)%}=vgU8}wLWvd97BEut^LD0bPL^23MIHVS)3CbE3uDSTdY_A2r zaJGsXMHA=o)<%d~y4JqBZ}C+DGGCOeEEZ8lp~;zM4B#h5-Gl018o2 z8^UW1%nCyxxj}!fh2TzsbnT1IcYx|(dJE}0Kg|ZNymBz%hKymY9B>|odvjTn(=|%I zIT)ftv9E4z5rJCQvsriXj)xn61QmQ;U&5@Qg+}SqQWjY&r0rdY00jd3b_%20wfTKV z@;y^jbaZFfwzuV}?vGTtjY_av8e4>A&+hLj7aYqEZVRd9q19hZQvr?HuWo(!y+wHP z=1Mksoph?3XX`GtgqCZ9;G)VnT>eA%W*6=iuudfH)DVHyN?S^M!6&WvQeBL-)+02!8?K_Zr_~=7W(0r9ObK)O04g@p7nDJhHa#x0BY$Jygs+^pj1nI@;;Y^L4;t?+k-AAityE z34hL=3-77z{xPo6j*J!?@3Wn(ftZOe03mLTtMPKPlZhePGi)6KbD~ zfnVv8HCbuUbncq=1eT|Ks&L@9`J-p1Xcl`JD^DiGmU`5K_VtQ@f{Dp_TG)RpdEfv4 zt~4yewuYnfK*Z9HSv@lV(+4sMJ( zd$;8=g->0|jsqD~Z>$f;F;&VdS>ec-?!;ra6HoN(J_bT1C$T@~dgw*ZTgW3GB{FHg!*4#>O~ysBQ)v5gPFRexJkG z$Y37iKCSIhIN6gVZl`3uEh!j6Q;XCV8Cd^DFWUtH1$|Z-UzxP2BBGx3d}DtSmZiL0 z3^q4#-*soak3ojY|L6y>GJ!pCOx;H%*Z_*h+M$Gj1zOoAnWqW_b@x#d;kD@goHtoy z?UiSMD}o@@#^fb3YFzk{hLdE3=I%Twlb|aBw##CgupusU%PYo zYsHO^(Dm?V%ok?UmB%Iwsb!<=U_tC~g0Q*nK`LZ*tf0pAfYqV*&+6Ej42TnM5Bh1g zcynDE;G5XdWN?uhq|oR&YPF2ObBvxM0tf{gBCz^O)iGLg@I|wp(;wRgZ~-Qh&qs^3 z`|Q(9Q3n=}j__J*`KFvLT_nOJg(Csw$uimz@qKAcju%$X3VO1EI`C_J2fNZ_>zS&* zF^Pj{mHi|xLtd9%dHDm((%3qt5*fr~w*R~>1IDb3 ze{>lK5(R~x!a)y$N~JocpQZDmZws|Qlv5ouBxw|qaUzW zvJ1zKJM)>RFnNl8tI(jFR*rh7ud~DiSA{}rQI4cIOcIS4Z7T(~Y8vo0P(r}hxDR{{ z3uBhR@3*xO={OQw2;^&=-5RkP$?a(qSw!s>W|8j2)*QuJAls!%V>JO;Xzif=O!>Itj8R7?Nk52Dd%p_FRByKMi=`wu*jPK^Zlo7QFY>zlZ(RPfs+2J0`zocnY*a0FpJtK`;T z>ta%v0`{|Z^Wo!CIx%}7eSFY@2*@l4ARxUI0^%;5@E-x`1q7rQ5Rm-ES;vc~hSx#8 zrVx;N!Z{!7OdiI@$^!Fs8{{y30;Wu3@hxv>laZ0ZZ~j1Z2>RFSp1^H>lPa7bZOwS# z?tA}t$Hr{GedT3x1cO5k47?FQs=T<6js_3ctt!f~T!Vlj3TV+ab(U%^-T!CZeDqR3fBOI?J%MIbX!5HWua^ zM=jl`o_wc$c9c%f9Eg@ugkx-yI4U%>dj!h9OFj+@8T8=kOfy;nvOoDnAfjC*kUlaqdVCn9S#}wK&gV8C!eFi@$~p97Euh&rw~FSK zEqZF;TSi&hswO(gPe0T01Qn{Wv9wsZWmyL8oq(?R^B{Y5!w_A2m7CV!`A^kKg=2$z zD#}1Tc=AP88Q`~T-bi%g`#Y~MRBZOYyi?&&z9(UQn2OE!?Su&9_05h@zbfig26<+H zf56tr!E6sN*uR2TY^4Le?4#6uSJ8rXrO%{OVclDQ>=BxX+~F4W#F&p;`LKGr32T(H zWeSh$zXhd9Z&)}eKOvU#6Lu13t()=}aIRC~C<<|`Fh_RQreLvPAyOh%yrGuw^d;`C ziUL;XLCC%NXpcC6~epl1jHit`iq1$`crVvr^0Dv0gEIpJc{b`Bre7bx~M&OvG;T7 z{xmiwvNu_J6!e3hFJR=x?%qFl_nHIkAFJl)Wyd-)LO~D*L<~*+Eu*aHZtba z7c=E3;Rb3Pfuj`glSWdKmDjJ@jsjS6(tKPh+f^eBC!R1S1I)k}lQTUpJ0R84wJNqgyD4Io5nh zdj9emy;Ms@Op=yi&X;X*pXoaGlk?QBjlq|<36fg-w3ihAp$8jk;WYv&xc4z5;I4#- z08kO#`1`@Ge-AB$)yR31M#cq9-9SmU2Q8a@a}-^`yK40UxrZmfMUOSFl&f&FFE3~y zLHn`FyyY7|I-SnEFF0dHU*KAIs?x|yCLPe_0M~jQU@k5m;R0~m=74$mAXh*(lB|1- zlbv5pHFxxx2ix3jbQW%D%)L<_Z;oZrjYW*rQsD)mlWQWm7Hvs5qPok2H$1gSR#aHMV|Nu37ZVHmuh8_Vg7xJ>X2 z(%{A&R?h;Fw+GswK-fK#Iz4q3dxsJ~&#;=I&T!-s3b9!Qb*N|aOLbf7(eZAO2VSWX zDXj-#Ec+M@CM(I(`W>m$P|~A_8$<~jd@?DUTd#yWTfkJQPPW0>z?35pGu^ zdCFYgnYs-h(B7f^$epv_D%vgyn`fJ9@^OErNBql?oCza+!V4ZuSK8BFR4PgLXNV z$HJw4<}}|?SALFgPz($cv@dNCvJcaF&dpnHeJk*gIZ{~Rd2XJ1Tc}*cl|v0@atGn5 zU9C0TC0d0)UF#O?_0-y(2vEwIK%WyXcLVEPgkTqloADr-WnbXU0Ld4QY|-R|I7EYC1-jL`V^5OI*1 z3PKMMbv;ZqaP;M+)SIh7Mgl!Sz+{+DH^?uS=~V=CUqED%0l0N{5Itc8)aj{|)9pPx z7y@~Gwc*ixN%M5aLtQpKx|Ir!I81hQ4ylY3>|EVw&fveP1c)-Y@sQv#8hlv)6$MxL zumFQnUG@!~#c#&*&D#ImRGJ1`)~R|BAZtZrUYCsPY!Yu?(7l-D!AAt)KbLRvj$YT} zgmoD}0yLI&%AHj-$-&KIv;#?Sl4jNku5@MSk4_MY8{z$jeL9g<8mtr!u8haud08F| z5ee|;m!EybROpHRWsno3jMsjgN&b1T0Yq{Xfs7=KzsGw#o1h~6qbl$4fT}1j$8mrF zlXB7}^tc|-;CcTAOyA=d+3tbc8XL!21T&&wg5&oz`*$`mONVwJ$x>%z-HuLE38AX@rik6RVu+`xd)zC5EZak8(2Tj$NHsf|7= zv$+h0OkiIJ%$Qy0lc;4k5ffV)r_m^cflFp+A_AgxlHSQR&GlD_3JA*7i(g4Tk^mm{0;MZ%pmS=(%de?=Z zC{33*n!NdzLPGjN=WQsbw0i@X7>uZVM5{HpRRi88uZK?B6qkbC?>F`R>pgI(+Ep#y z=F<3anqmur;4v=k#@Gb$7@a@80pdLfv*kl*@!LHBJen7-O#qL9Rq~pA-oiS?rt=ep zJ($sQ6Z0b-$lAU|JvV=Pr#x&#;;($}P&BZgPFE;@h(^MkHLm=phvEe8BrnsLpADf-~F!c*mspc|9m zbR{ixqN5V$XF-^;YF+d5bY|BvhkG5g##s-Y+nNLdsm(eCz&H<4!OoHf#*ntpOu#!e z&Dr9>gQ)g35Y@gge)&1kV!WS;IE!iupU2Tn1wqCP@EU!YI@M=T6xlCUe~CeBpc4*i z=sXJaCm{(E?bg-mYEk%S42=iAp!S?M247p5gLwQ z(%183Gcg*l&*HWCV<_HcOiZXg(ueU>py|K$E`s%}RUvVf0Pw*ZzY8%cY+mnA2R{}I zAl!WGR7xJOcR8}jF?<`hUS%xY7$$ccx7deXDeV8)iZic{+mTLbbIoO|_g8xAr4xwUP&=ob_0zX5s`7+{j z<$%pvyeqvQ!R!xM$%cO=-X*WpRAc=42VKXS6!&HkpMz;J29-qdR{9m`lgv z`+z5$sQbn3TsMz3KOYPwtoz-9wNtQ1vF}HJM+&w5Ad7KUhfjts2cR-mw5;#1to zR%@>mg&E7^J|NX*tre+v;htojX}mU=zix9ye1x@F z`V9nI6nKe}!!~PR45or1+YV}#t;A74N~tq&8kXnSG_%JSrP*A)+csD=V=uhNmwydC zk#nYQE&S+hUFGm&xBUtg}%VvA-vCF%}Q zJuO+PRqwMz5T6V*+7Rv*zE9<{%|9ITB8EpPW$KPjR6Xa{7f5e3RgYqzMbKc8Dgy*ZVQ_0s6+Qan{huR@ z>DSTA1`S&=c$ZV>M3o%JUmR~xFAFUPjTjxRjeS|K)MsNr*UB{}(FM@OT=|Cy%{o?@ z={anJe}6s)Lx(KdK`N(>=o62v`+d-+;odxn*KCG8SYU;gBCz3^PT9kiJ_FiUkk<70 z0j+0g!xa_>n44DIwJA}|jLlr6Bf7=waZuy@>&kU(S;+jA$0#KP#F*y4eBQIKdE5&s zJqKCF1pVTDw*JR<)4>1Y*LaLDERSm}e_lXxk1qjJ6mV{q`kk7S9$a+bv6$5y&_ov; zQ}MNt5p0*r*ZtD*&&8g$%eKCk?)$Nh@oZYxf|-d9u;DZH2Lt&G2pp_OT=^sWj)=4C ziE^}U*l6|R(R4$>kYW>!=Kgk~U>^89lB3h;TQCz4aJ+l1d88_TzDv+i>v6LF|5z2% z?@GlIaRmsnyYpN=CeakNh8Y>qtCfkq#22|bHH@o@_2u^kgmyFpiQQ%`%17871 z^aizapdTI(n^=HAV-f!w&cF?peBl2VD;Pq8`;g45f)f`RS6Oi8IGn2qNdSE-<74^05KP$C9HRV)m149D+fkL`xfx zYl1-BhzqG|WCO)e({vd`s_uLCKxt7z-H=5cAlmVDsUf;a9@{*Lyc@qvr}D zqkw$KHas+t;n4SyG6J_Ia>r5;&nh+((u1+~|wS zj_ja8>e%W`SS;3M9P!8$Ftwnn9{74tw)v}f>~Y}BdP=%pGGo?zMy0|p@MCOu0q8J| z!;0!pq?+2biAwaamuZ!&;v+z3gG7Iq=vt6bnO6Rp(U#AjmE|sKCO=f)9rCY1p7keWfv~l->&sFq( zSJ>^FEH5Q%^E(04q)&FYZ-M7Xm#Sl|+_L8GV|7o^eYREzyv)Mn@mthDAq@8b)d2;n z0}50JoR99ttN)e*)nVY;U5XXhoV8g9X)CpjR5goU18_ciu>q)Ue2<3s>|1A&x$-k& zc0R~~9K&)&)~CPqWhchTQpqH}Eu#c1dsTrPSsJk|3`B_1{zDwlBXfWrX{wR+#*&QN zxEzH7M&L5`TeHXlJ|B8XGSA3u=7$SMdTY07K)0Y3nMR^SEL*)>po-^K-Ae0)(y|!q z(T5Jq5XEtht{-W>%>P-I1T5#46e!b;725;&tUI8Is^(vi>c1sGkjfXYC7M$euZv~r zJ%3kMSgf-)TlY3-k(Iw>m`=_@u1cRGZBd;AftC&Z*VOZ8Yz;rsK0P|a2Bo?MK&smX z@&7CW=|sS4#x}X`iA0S2=mRLTr}mQopoXr^0B4Q|yjhZGy7Z&vT~{!e!jc;_0Jb!< z*|~9xHUp8tw2mIHojlQjGmYaPrcQV~!IX*w)Q{4+@PA&!4j&QPV$!O8H2~BUPdXtW zLuC2z{AXy+KYts;4lJ$(iXPaTGjA6@g3(vT(;{?o?2oFiGPTF6(8!HQj<nF5yV26Cd6(Q zELtb&%zuI2vz#Cr=;)IpnK;OFf-=GdQni7nsc-KB!Ul(u8fjn?U<3)fZ{C=e(U%b?9e(VZ z%7F1QN?=-n9}p$0282H3kga!hPm;FSqu1`lX_v?}FN>QRnyWb`23A1L-{Sw%{JqZ` zP6sMN{xwh$tU*Pv1{L9nkNM`Sb2{1-yZ{D0U(fp_-X8Odi3lF;h7%`#`t}U}1=vpj z&Uug^Iy}PY#)%Uws_Ov4N2=r5>Rb4T@{bo&Jt0{ffCVhr-hBIyfu~suGoTz*y8l;+ zfEx%>uI_(Igh77*Mah8^BLx{9Rwzl^W~wyC8TjUlpRx{K5}=non|ydxE-V0qDy4Ry z0+;bXD-?7<)A{Q&6+O$n3Y7yoilU2xJFK)FJqX4l*)^CTamrf-h{Md0)^SJz{mr3T z9WKzT;KsiiCADKIia)&W@I~$v$rnlbz|w^M{7sXZjw6z4!c45<#`uX?P()cm2NOWn zkq%O%lHmW^I1T<~8c|K6W|oFnd+7~T|9d%#BuNLD`}hWY;(qwqXJ*p( z6$A}nGXIOLH;;$$zCIS))-5cY>BZmmMlri znnFa`MvVL;GS+RM)-u8 z>BbeawYMkzf#*8k`mF;KB4~vGrR@{oLG}ql&UH>jtDSVG=S|GLSxnZ`xRg`Xrw?}0 zR!^;s@yD!)`$0%b8}hWO!(!5u>m(flRe7JQ?oo-4J~To>z74= zD_K@+1qkTB&ZhIX6v?K$>U1URxf}nJKBL%T0Doz4YosmL;7=n9`qh`QuloKd`U>oZ z(<=jY2#DMLI?aO;FDIVVjGijjV7ic46N}!x`2jK+>RtfdcND$x$iQk+pk()44rm<* z-TjI(9=2km^k`7Hob-)kKOsi29L4YLe8?O`jzffeoEn^`mV zY(?8H)i^FuGsClEQOSO~W8tQcGEO-PFyg?g;ilJu|!v%0$ z*EJ5P|1^a`L=agdrQw0S6n>=lR)ua&<^w&cg;}+-%I%>z5xX0wg9eudT)Wn?k26({ zr&b>vFNGfdRybbSIo|S8`5P0uJGa_)cvy41G|+YcKHj!#J0RHoT{{lho3lGQ2>nYs ze&MIw`gBSD>9P33TNm0_F4r9HdkI>8#6JH0EfrnrCCubxsU!aA)Z;V8uUPVB7FLzh z3}e~$#(pgsVhUc=WAxLElwveDL_!|ybaeBpJlH$v-ucmb{Fxx7@*rd<8)Bz&xU$)N zyt|e8CU|$iJ8R`=&nxtJcW%>8<-yVZZ?3!tfA{Bz{BPP0y8Yf9t?e0sXV@c-ns)3Q zAKHkP@49OG$d9^dTYvsRkx+W&OetP@+>7#c$>9&3qK4C{n_NbDu;!&S= zubNSx_q=vV)XW(VO?x9$Ym9>*F{aqY+eGyqP^4?`z0_UWpp2_IPzbrsjgjM>d_O{G zXWF$;JX9xN{p9IKw~+-(Se$$*r_1F>86~}rcY;zJ@3f6ME^?aYb&qryYWM{GHYj2p zl3!~56R9Pr-ro@3xh|gU8lp38`bl1=p35X^GE$!9c|4n8w^tSBg(*09Yp-2+C`$Bt z+g5EgJppX8(3^i;#Cv>iiR4+2#)>m5o0;T%n&T;mtNUoF^NB0lTA>jfbCg{+?Hw+@ z5yE%9(lcCOl>Q49XfVgb`n-GBUUn=3Dp|Q1^sU-=ZE`cl-h3)>lk%W&%&wg4DtAlT zF13X=)Y20G7;2PT66}dE5J@A75Pb{dB3J7*eB?7RQR2O_^Rg4hT^W1c&dQ#JaUC=j zJv%QAE*>(0B7u?s@pFEh&pRI?(czTImFa!^>5f?OUh#Eh!@k<_jRiPd#tCe^F~LE zc-)Id13@#BjH{WXXz`QMr=gk8Yt^%RZ5fynHnmd9Q*`o2xEb^0zoJI^#gqT_wX3cc z7+f>a3~*RJrkBMVYc}I;!K4x|{t0!p6`3s?;sB+5v*#~-J9m}IR8X9`ZHBGuE4W;z zLbNZZ4~sf`g2{v{6s_~)g6%$FA&WSQ5R~kv8FGcSg1g_!Br7Kw+&dB1!;-*$`3AAYm53iZi4&e-_&vwqbSNGGZ7YpC9 z{AG7{FQjIRbi(kY%IqnZ?Mt{QtAC(TVQNTgV_R+5&` zziET}ycS?1Pn+>oY7Jg{n`wVgR8bQeMstadPF-Ldl6@=CB*fPI%Hb(#jPu^F*DXn( zvzYzQ(aOGDToz=7v=yD{McvuE!j|%}(#%Bz9wC6ZnoS2piL^g`kz_5x_kQ_3`+U!2 zTt`2e?=ddeuJW=dx3KKeR$8Z`EzRObb~Hg~`#ur5p!88gaMgqbzpThUVG>cKPlFm9 zH9^+$EpPBPQ=VlU;!tH_`nca{AxM{nUYc0~1w2*WV1f{NB@jw_BVF&wP!An+eR(iC zzA8Ds>dA)dpb00h$jAuT&q-qz8>TRBrEktpo09%C^uyR!XjoEUjD`9X&x5Q;xQNRX zCbl_+7zD+y#$ukLM-?Fy({E#F9(IgUXastto4kamrrE_=SF?tRE@f(eW>R%Gc_~r> z^*V+7c2C5c;fKZD!}^CPCtwOn+*v7FRCGvj3))uPf@*&5VfpZKOy;{RdZ7DBBBSwX z#|nWAh`Tq#AB&xkGo6pDJIcov_J4Ma>lHprz1SqY$uk$Y^&B_tE<9RiW{LHXx{m$C zWrdw6T-sa+Z21899JtVULv2%Pfr|z1w%;ROAp}Qx-&F-mqwz-fg~y&e)_>cBN-BQb zUTxMSa2{PzU<_1x=G6(4ocJ(ADf@6_UB*}}<*~@$+keLWJg39G?xzx6Me~;HL!N%D z9C71M5bggJ2x@$mZ!Wd`iZ`suwzXUMW614u$zCIWG}$I-+z`E|DbD=rAgGh_BFnPI zH<}AMe~xKH&qag`e+#2-q^*paYYJo4t>zar=kU-qu@z4BZJu#+SnCqDRhg7tU&5VT1=wuK&_M zELO;6*hpxl8+Q4#=(^Jl29eK5g#YYLy}9fP-C%C z#T9>$pAQeQxWyCU>Z(|FNv|hBs6#^g(4WDz@A6#PN_oQ^Ra()57Nyv`LqVFR2XarT zu49nq$=T?>8B-GCT<1`?!27O?;{<2T&F}S;>?luiX}QEkJS0_(mw}eGOwMUESx=DG zelKY473w)-+>FV-g|@j0bi>fWf0D8hg?K1`|&@OTS3IZ2KUTNRvuG!UK1Y zRFX)s!=5wU^gmnX`&Q`wi@B~8{lmZ1GFNPcSWGi@re{3x3({4o9c<2Lns50nebdN- z{K>o!HKGh>ZI%n$m~zvAx4!D#fWg_+rUkEN$Jd8LPV;8|>ClCQat47E^~EFIW@S7tb9>(fnD36f=`?B; z!(}$EEewD0;7iC=SlWX}211+S=HNGAW9tdZntYM6AZZDcjkj3)BG2U5nSL{wEP69U z_{~$i!*A{cX~Ex=(U+K*LX#}Q^oEy~sdtf*kiW3c2N6hu@A_QHk`S9Ve+pRp8#x)`1NzzVFsW8McP0NSy46Cu zRpAsxP7QdnOXuv6;42Xn=#G(#tC2|5Y6_AHb!mX+F?V2T z$F}|*{HgKlV;)wSo>jx*BaopNNvfUI3F7D3XZNn00?{%dmo*%;?7iB4)%cGz zX;SX_@UcP{qb=lw5X-B1^wYK7w#8tm`DKa^mu0D~GT*PawIaJuYo8j5yL=ZjxPI}^ zefw*FxDsw%>r7nlAYE1YvrZ-SsboTBuz}x;FDtQ|gCQsUQ9eYubl;9jxBl6qixD8g zTnOASi2)I22t*ia5Mii6grS~*FKp5WHtF(t4&Zg=ikY>oF3xhLzf@1BE9g%Iftt<6 zIA(%ElyjE-EQ5y|oop0kJ@wB8^+mj<0}6{6lbPLjjo3GHf^xZ9)B< z`m)jjsXaR1=oVw6(f)JBua?sdMoq!?OR2ep?u}q5)QsT`HLd~{QkJc$ZieUV=DefKr^fNKl(V>HmCFS>`tSi+~}%oYN_#+7z&cP9pea(kL5>g?M4tc&K`fPhTW<%=>DZOb8 zdu-QZ0&HKLhDH-D3#PBjf^olav*-G~>*i3FTy`8bBEE`yW#mCzsJO4k*I&9PIq(SK zzOnpxK6_*etH!qxa$$g7lz+dh1H2Uz@QdLFEa$b({vy%wc)s5Aw^#YD_k=~Mo ztCcdKec}uGqxd3-R)bC{2B`1GBF(5e!76f(Lno66zb9DpvX8t`0C$w0_dKbnD)@Ae zPALG~QL1*Db=|Y!v{WM5!t;7clft_VUPZJ-IfO$$04RC!5wzh6C}^1Aykn11@JU~XQS`e3<@TGC7X8ZThk zrU?Kk+BVX$FbSCe0^ul4z?c%fvGg)*8|thiosXgP37ENIAe5ZEb&J36>^o9~$#=x& zJCm19KhM=cm1oy}qQ>$1MFk3CHX?Tw_maW9K?tmOL6Qb;@T(`YMxipH%1q#UiqK#N zD96S4nt{$2k^>Gbg4rw)-V~JhlqGQMPGunNaUCQlZX#5PFDt#D(l`_rf#!lNcXeoM ztNfRFVXNGDoN8Y#eA?lbfZcczdfR*Bd5q6`uQWo!9I6E(M#7|2LvG8LRKKBAzf`3h z$uU%0jV})eBxKnE1Vj9nHDmsFxG|f#>|o&aHYSyUJiyfzHUN`?$&w zY52AW?dQ%>dot+2K=>25ElNh*s09IS@$rphwX$A`t(?!6Ces!YnYIixJjF4p8QJo# zep~X*S%X@rkjlKyTijk%8>c!S0lgzL3tjZ6A(^4;18tOReM5`~{!}m|6%$>V1*(;I z3o~@mXzq4>cCsx(4=BR{gV^8)A;B7i1ZxlytS6=yH(v*~=?a06Kmuse#R?5VLd21A zfjBJIr~OP+lPa6`_}vfCDEe0Q^G_U6LL(Tpt15=N^Oop>m#0|*E|0SFd)XK{5e&of zuL=~r&l~x|I&&~PM|Td8Hy zcJ1$Qbao@097P2dgrz7}mlITjI6*Za{U?mE@mF_t15ncz#=6(`1!HBb5iPoI^2r3} z^Dbz*Xvy`Bi>YzvWTeIw*(e%KnFKlbg$n-lWN)VD#%j;O?Gqe9Oe_yO>Dn1hkW84) zubdpt;lZ&<2=Jq}Ajny0K^{O$MoC(N^7#9tEkhokw*3Eh934Vs0qabZB_Rkw`(;s1 zW7inDQo`z-rKqOlN8H6-yT8!ToKNJ`|IUmu81|gGBh6Jj>fIYJA=<0Hx7CD3`fN|d zPPa5petaHL0Aby7zx$#FuDVzXZcy+S2{jl<>e+zU56uqm+FpX}U&tHF(;3kuQ^s z65=i79`wZhqS2(1h>mcaVb4Z4WA}yg6z$f)P)l;6qNl`}mp53uD^&>$%03H}T8VgV zhb!K>=%(kd<6BZX7G;Xdi}Z?W!B%}G=W8U3PrN|qtjVA2zviH3xqbziGHC@4;$zkV z!J+phj1@Bqv3!Gk=IMW;5B=z5pJza(tO9+A{C~K?DAf!|p9SAlhca>X1pulu(P;`= zjiobgr1tgQ+liCn{A06E?`vP!p7>8C_{sEJIvVq?dgZodZTyqzqu%-xLE%+J71jGMu-G4zk+^2A+72cVB(nEwcIKwfBc46kKEenT-ih>6Epl| zk71zT*|RaJpR#5@1*Jmqo9cwoYP=GR^%LarhmLN;ZiazehJgxVU3(GNPeQB-Ypst?X+R68lIC-C>#n|Lb>i8L za^~TIXQ88c4P*Gw^Ysd;N@6CZ$${ml4OHGH^zMkVBI`kY#I0#JZ!#<^ri)+?HxO~T zm!;)h_{G>FdQ@h@ycysC;JYnmPsCY(L#e*`vpd;{0tf^}C)1mQsuga<_s z9uz0ukv6^mHwXw1UvF6H&vKoOV17pei3wp-8+)j3h02C1&2l6Vp2LPQpM=p#_vB3` zFS$<(y3ae+fheRySm%1F2^hD_cqHH-82)UKj}VW>G%SBz$_4y`kd3xm*fNy&X|!kG zYfB_}u(FtS1$pFqlAc`lYt)deQAA} z|NatkSxLYq879=zm8_eYerw~)p3t?b51qd~@^g`RzcYvxLAC-Tj^a$qw0z=UWiLe= zk(AfFI1offF&aW3M<6C}oux!cJP6s6TpI8nQoeyh=iQGUADIh6`*S#y_|iZ&7d1cYUr4MGdcW*4KMgyrp@4Ul{k=It)ER4P=^+iAiRZ2|VgGQvn zM(u|e`ngmG*hr-H{r?t|kziZqstrlAS`z4l-h*J^k}J){q?^0))@m?Fbf7)x(!dAl z51X3YHptqgEj4+b5X$D&t+!k+53;mSUh+-oE$?-{Wb!h`-;gu%dlFw@5%^|om``HD zC*}9+Sg0h|0zirgriy4>FqH%L%7VkzrNynS`uPOZY5|&R^*Ner*+Iw8*pF_3B>GX_ z7g|oZeX7b&d734(n|b7nogg!*)m&?+ZH8sePr$-OgBQGa6RaS!6~{_!;b?Z}6u<@_ z05(7@UCu4Lfn$720(jSpU$gskJmTBrwFRZ?E>85HEg7>EgRvZ%c`Pw=RLyA9O01VI z=Pr#q2YK5M8FTi04$}U0WpOJGhss`Iak-2KI%c73P)ea|+gRZOr)Hk^(30V_H_$N& zta%OC2G<@bacVx&)=`@a*!nCnBSe|8$!oJ5tTDX@tE3-dH-(=OFZk^G7qzZsNP5H& z>U7f5GZYAgQ@h2J%{N`@eXjgvQ>|IgeAxw%whQo505JkwD%gsCbGFe|aKkv`YJBCM zBXOy8lq)bK6=^Ni1JKpX9V?_pbiM@w090G9Sr{v?(x4lT1Z$;@zF8BGVisF^9wnT_ zVR6xtDGTUixc3sr+2jfGY#ZyD!&^5rQYuLrckR_&aM^=htRG zaA?$YV5}CC^anBgk+?UmUQ2Oxs>=9kU}|TLq{kvCGXtz2aRb2vSq;qQL`)|72QZs6 z(59?j#Q$DFmx4jaYR6HBG)|n!kP!}c5OA@iDctp&EG3@4`}~j}=(9(HBWFL+2CPwq zdGk1=$M+vbdGBB01k}~Q^x)=+3LMEdEM`^rvC&{PL&9)kc!UeHn0;wF@Gbl#qdr@> z%}Qp;^^U9rXpfxtnas1TmkOV`q>&^JSzp=KU2@zDD=ts+>qX@;mQ<#A=|g(sYGh*N zg3|+6ZnMoyr;{L^LV#!m0!f4OM)SMHYyn^Ef6bKVGo4fe?Fjmx)@s=7!h=l7Z@ zCGy5a-dEbXpbDja@<-nb)}`p|bzbM+3BX-nk&wq3;!+o%#uq$$ZRZ}4oI%&v6Zt)g zW0XM$V4GHeZ7BK*?zi3%=vp}E<^L zrCR68c@}d&ZIdfG@t>E9q}=km+zXI~0&iQ?TT3yATLhKE--rB@p*u$ktD*ZZj@RdF zkA7KaezY7~axWLEpydkHIX-jCY@%?HSQhC2J(6>0zJH6S(1VBSbRZKbql})CC_TLz zsIv={@j(DO0zwOaJ{4uyE^;p?x_iCI8a%PDsI*o#d`5pTtY=4-ifAFEw3pBTqrT zYm!Xv^0hR$NPiz%{0zbfu3x2?24U!L_XhI!v;N7P>tA4}3wIp%uISR_3#S+eo=H7& zTp-#E9|V^#+S@uCufRDkyKLt3u*83r)n^m3J!z6vFI{Dg@0iKCnE>SF>|wYZZ~E67 z9fLbCPGZzfe$$dMGd1**>&1BgbbB+8ur5zqClMA?%a4;ePJvnF&C;~frFHc45wkp} z;scG|{wS9E5-``KXPlIck^d!_bK%>& zik8Jh7BgN|ne_|CGK_X5XhCDv1?*h_h$zJW0~!#P>g)+^ftD#E`_;Pq$?!q=lmRn2 z_yPEk??`}u6&P+8{JuxYl%m5m2uo*cR!t{dhtrozl4JrVkrVqeEdjT z8u%ynUk?`3pFZu|m0JK|&_`;JWyh4D5O|N+MHS>3$UPtPwd8a^B@MBM;4F=G49t5K zee(id$9DG)j`RvPN&*~$X~>!pA8^oh1Lc0DGoEK!3E|_PLyTP~M=ca~C>8@)GGfY4 zO$OysmyY>K%qKFz<|tQ2cn;k>UpXW9Uu7jq29{*wf{55_jLHkwPA2ZdQFr6YX z?x?>%?-Pux&mVUyC>NkjCZ-Tm+-C+>PfEY_pycs%e zld7c4isqyy0(Pz*Tc=vB1(B_hAq_R6uN%Z?dVNZ(a^*DW+jm9)b|F0xLE5x$YCe78 zM0|)E)v{6}vx`J*6OX72T5)l!?0ATxCxp>pfVsmE&`Roj0NP9P9ja>Zn0DJ zzL7fU1OBac^34p;6m($LtM{Z-|0aI{yg+_rs5rdvL!m#<2Cj%qE3R%rootJNJ zUoWk~E1`+e_D173;n zc+$aQB*>B?C6D(+gcJ}J)H;8k(g5J~|B@se;Vf>9v}lhbP=2G!-l&DS_Ohe;gIK=T zA(M<|drJlIL^JK>5ia`mdWc4+9k$N5({P+jr`)TrUZvg3bL`DhvUBpIsP!5nF)BjLm>p0kpTo? zh}U?M>M^b!(>*<$TtQf9R&pPk;gq;2LQs>2X-{-50tule*D3-e z={p_pmqeNIF&NBGBwC+K2bK;Qb;!YvGJ3oc64aLuBxRthf_m=m4t7MY(pN;+6vS*z zihuqZ1AT8U1`c&2qelclkL54)@qkTGDKTc79{GQHn5kO1@}_Au^5#~2;`V|o#e*Sd zE^?^?@xp}^rZEx5TQ}50<`pb`_hb_mrZ&GmI_y;uhy!|7^R)~IYr!*A6*2abqEFx3 zahgGh>U(v3zHl6VDXep=OTQJZpY9g`C`RAyH)9nsRlqZ+)DkN|8=~~t%|Aak5gBPK zNZZfrdj3-`FolE*pauEDom2UGg33lgWyDw3sr5m0WVd-QEQs(0!WlUrWrVK-E={R8gWt#~xX}r$`)Zo}U4h0a+FiLSu39`wTiH$S%z@ zG=H!O1FZK{BNmt^3_`b*>46p*7xVuU8=BsnhW!f%EG|~a6S3iE23c&tqu+kJzs3Du z>qGexm1I-z`3p`s-zNJrV%H3VCQ{JdTQPdd#?}&EXv|{lFhBK^%_K~&);&rRWZ|3a zH%CXgG^6d`Nuh^(L5|F!+w=K9`P+i`*6db)gzW9k=e;3JvdGq4uL*G>%X_wh+@MhN z|6wESTFX-QU@-wUVgR;xHCdflI;E9EJ5KmftdhSYUA_Gdx1p6-DQ4P=7078|oaPzh zWI;z3q##kWJ`JBc6;U-vP!Qe5snug3WZggVJli)ozhvh8MBRsbsq+j0fF5k0(1Q*4 za~e*#*+w2(5CVUbo-cY#t1CW&Xqw&8vzmpWc+qaO&k4``d#^67=%N$>=P6OjU;&lq zDY++d!)~+SVeb@PN|QP?5s4o=LGYt)o$%h64}St*xd%>c?W@;#)!`0l;>nu46({St zh(`nv7o&(Y@ru{?JD_pEbWlYcW2r~S!(QO-jjH4gq;AD1bEG7S5cmu!FDL#A!}6@B z$4~lRo0YM>#zAHZK?0mZP!@8;0-b`O%s@CFKh_&teRtZB^Z6Tl5Eh3qtu`j2BJfT_ zZA|BDa#?v1%QBfkDE)$B5Ol1`6{w~CJ=5M~&md+r@o4kes8}cQsoL_S=!V_aU_k;- z)Yw=nigEf>FAif9?1RNKI<8)0l999>`VB&HCM(ku?p_=?XnKEncs`raG4!p#Mo5e@ zRVP!|5J=1$&saKj39cv*o*wGthQl)EPpL6(7}x}0=~t#OIN670TGky?)6Y?z_f3j) zi~M zhygjkv`RkdoF5_CX5^2yi@l~}m)8hLI;F?ktk4^X-Ivm&ConXxc>BQnEJFNm(-T6B zf&0Mh_#yqqU!F9bU*^3pAbK1w_X4zx0eO)eVA4COY^b6p!q^V*g$N`BkcogB=e`RJ z#163qvii=g1J-rf=*a-8_*24iB6KilY>u*}dkPdoC6gQ?tsQUOauy?(H+nLN0tvMD zR2}4`mpF94@&K4hgiSl{P|wBVt0$6CQ2Ywh3UrX=;Si0Jj>A@J6M=5<5y3$N5u5YQHHZby zbFTcd6ARazuJQaRH+drCw)vt!!dXlJjP(~X4lvgELM4-}P2os@INmj^g_QJHo>A1r zr@&m_$IpZW`6jZXt%6)7N`&Zu$6~05MQg~B`_*>7E$G?dxR&|fHL;^&CZ+csoXFQl z4Oss*rO*7r*D;n*3r53VS1PuM+5&Mevh@0{JImC!>d1hKqzpE`VBq$`yx}RbH>(5| zUUs`Nf4H3`jTx-}vU)hnsAa6PF=kZ;V1-K1uu^U%$SdEklA)TWaF0|Qx`dMUNTO1` zM=>O~g|YPbAkEWDKwN-)XaTe{1(aH=i8v(i!xUoL#;{GKt%v9zLXbS5So|0rs+Twi zM}bV590RHkauX1JIxNprp!C!2$1!yVyoO%gae2Ho=E}8v76*(zFEv?)xKt5Lteu~~ zFawCQj>XeY6a5$q6|O`xXp)Q94qofBsw~ro4)aFn zFccFI49*k{*wvUVxNxhJY>Eo_r)mB(stX6~wg^DT9wI9Q2!U5^K8b-^irCevS44X8 z6(t$~3(_T3->t82=QATiZd&%Bt$unJh~8R_*WmN_o>IHPb1J5?im$h6ceWAzbB%QE zFHmIWzzLZE8z8|6nPi2|>r~7D!_VZ^%ngITnqR3|>xRQzP+ys$H4y?$Kbe}lWp7Qg z1SYk6yMyrflRgp|Gd^{fvA!q!>cvBUE7y(-6VYtgaXKhqLdHtLOvvJ$8(Hbw;W0ku zXV#1}#A~4NwPXpa8%@q7Qgy=$Z#(8`{K<1yN$oj^p@vo*qu9BirzYfCi@ij&a6(lG)-arl86cZx=;31ao>Eb@c=Z?`Z6i*vi1(cvx2sF+1 zf=lB&pYxheeLfuB8u^FJLF ze=RO!C4jgM>XDQK(Zf)%VP!wDqq`fzppc*JNG6IZw%=X)UI|K2hx187#5oGo!`i%gAxTt*W8oUPl5?_-t4qx{? z_&y6c&7zX&)>%~rG1k!d3&T}ZPC>rjLwL%Gx)>d@XRs&9%V7|uv)vPH|EaY6Eoe!3 zC511=1SiPoSFuT})yUw=6iS&Lt~{X{#{AV(yRv?TO~(Do+F{LujpiT6-;VdDUcK2p zR5|>S_qRhO__+DU-=iN#qf()}A66gisf6wlLiau#2OS^ItAy;Y?M*=VL;nH;EB_Cm zSXkt>{oVaD;iVjWxbCtr<#VrKHNtQ<5cwgM;5@5$cZ_Z-eHUT{t_^Ok zwwiZ~{WsWCVDy!s;-dU4kv&l&z%?7tqhX9Y{V=~{k3_)K2&ej2W+T)k{;?gKGu@}g zCNXk!`DAW%gWWmYdR;DSw2VmQ$m(I5tC&ryzhus7^evvlXtRsc=#~FIG8gJu2h3+K zh)1q1<}(5uuh!zvsA(fw-_%5Obj?Kh;eXSPcYIx*56_9%gE-M|f-(1!Bx`ZyPhE*4 zb5!SNHs~)EdH@upig@&}^)7$&U1$*B{`_T$g|Vity+o3!r3eajJ4os|*T@et?>1JW+ue@#dXR^SchWW zziy037=@$|+H^&jxv(d*M*{e8`VJHr4kQ;kG0U9IXW37rT~I8&8w#XdjF)Nhv8ea^ zs@2GT&eemlVV8k>;dZAwKPO)w+2`L7s4-Z3sNRF@YuVkOao53Gm|4^k zYj{0=*5XGoM+}4BiF)a)$zO8vKn!}%&v$?Ly-(R16UY>x#bM!Q;Ik-Njc$H07HQ*j zCdhiC%FDs8R3-x+ZhPR}6)DBA7+*6L2ME-k@tBK%K+U*Ck-gc06W(29J)AjzgvlD* zb6weS4_H&bxEb3~@1C!a+5o!j6{9By6)tzWYeNLu#rzW_tc9P@>3V(K%S?-+4Op5E zmuP!H`;2$XJn}=~K70eSB0=B|+4xntG|NH9PXHLh$M;qR65=Qs-L`n>*cVxk?9qhI z3KJBqy@9KDNv=$4U$N_iQb@PtKbg>&ID3Ntd$4OZB!y4KWt<-6VpvXIj30RbSF0<9 z#F~Qi-}bcM{~QAGdFad8keunaTr|F2ql%iqzp-AQWD08A?}<255Rhj`@5LJY$JvdN z6s~ryG_oH(1WNpaTWA2XH{Ho)S;9=zj(?#46Q;a!2z6l62LBk#tV(C{Rm};1?P2Tj zWmiX)?K*v2imM!wz63bBB*c2hU*D?u(4rL!4Z#5f@NgIqCQ(qG6$Sc<=!80H(>Smt zRum8>T{-IU+=k*FsU~#}fM;~DKGu$-N)~7Fw6WXJOdO+ws6_N>li~?|BfYpessm0# zs?RXh^>(Chyp9!(rvK^QZ3=8P;~Bub>pBz< z979B!LY){+Ng$0cD2-s+4;}DdaMN{zjq@T4@dmJx(!8X6;`b1yt??LfXt1S~UP82O zYc;z$FKdOX)fRv~TS+jodoO7AFYjSV0F) zyGs&r#$XFMH?hW%PZ$bGHRhF~*KDhCx|P|3BfC$YfnkzK5yp%TFO_sD0wKOUgW-zL zBaeJwObg zgg&jvGmw{%Uq-KFDog_*Bi;uSlmvlh2s5ceHLPOu2PKZgu!_z2m~LoBfGiOeecY z`$X}##%I_QFpfcFh2!+gS;mVTXkcsY0p%Kek>Yq{BOu&|fa)Odj8_d08PDgHN-8Cn z0yU*+OMRb;LdvyHhw#?yz}z&eeo8wyPr=YeOvyeVW8+l-Erp8Y0Ma zhXCs8CL=3FmW%)lOkK5yxY)pcO?cH3|DO z-of_g{x=Wwl*Z@~Cu>o`(?%e~FV#9B(c?1tyM?Y(2X&vWcVV#Kcj0 zV&X^#E8ZBGIC5N#gudm_wQ7G0wnr5Y)7;^%gO22AdyK?%r}Sl;ez{%jf&P>GY(#_U z4aFd)M>w$|j{C>_XYw6)r=Q2F5{OSyNH^MfBoqP4HyJc|5ibQ?yyv4y7 zIkA5QV(8~3FwO_R1Tw$6;>hlNc(>Kl-I3^)Y5U{<4AR>08Km60kh(3GoTDUS4*%!qez>2CClbrd!bLT3CkTmS6a?JtYMw_DNCGWv%%b2)nX6+$^6?xZAbL~>4U-L=aFx`M5= zrlnhSqT;0wH=HY%G&n@~3qjkA>IdND&seN~&}h5LW%a_=?Mt)km*!YeG#Bn9vc|=Q z1yh~RB@ecA%4GRJT$?|u=4%7#!vfZ>6@!iXnQ~2zxlcjChAxk5IP8`#V^A-k5gKYx zYIt0#CdbS{%O`$c@Z;(-kX(`~Sqo1BD@c3)?4CHX-E$vUI?w|R74%GMFKl_&zA^ab z$jq0!=t(?5c@|iR)@nsd*K&5$&ud>5pDWYP=F{gDHN73qC3gu|0BI}iVskdMmH~|7 z$>x)gn_x9yUI0FU`W7E`VWW!^^@@8R8J+9p7z_BsIOFrquNf?Rnh$YQKQDkhF6Va1 zWK~1^>YZ5*huH1E0Ew4et#WDOGkwSQIXjYUkwqA`_qjt1qwLz>4-OK18(xB)lTdIX zeuR_VibQ$?0Dv5Ub>x5I2Q~2afsney4ZLO`kN*LES|E=<8GDp^wE6(>?e+haUZj0) zPL_!!-P&~Y9N!M^;TYa7Rr2T_`L<#>OG{JXe$kJ`Z{(Hli$y& z&C5Tc=y5UHdqR!l5z^Av49y1xBluRcqjEyD$-PDhK}Ilw#e6i3+}X5g$mrA7&a&5b z!^KKQBO2W7_LgNP>UIp>!y$RrM^BXMTj{KY&15)Go==!vgti-uZ;pE~5ig%T^T#CG zOf-rCGJ9@1CQyMOFyOwBJ`c`nI5!n@-{M3Cjv`ykH@>fR2oFdGw8irGbM3-@SZuU} zsl(d88b2=L`70gBxg)#6uSZm0OW;-#9T;R;ZWHoy3dj{6&y~8bqM|B`XuZ19#M;)zr4$pY|ape6ER>J^RNuY*m{q3cAq7R>c=2b_o zP@QAT4bbrJ!okf$K4vs+sIK_3S!(c`y3p%}7!KG3*YgDL`+t7S(qOGq(VattRo1v~)F z``$p^nRd_J(a}%uCjN575q9FMPS;$SvXPsbpk|&Yt5yI#%%P&1!&~T1>dx)3IVG%} z)gVU78^@G_cKhj_&!lvH95piu%LQ1)7comvo9v+D1!@%o?}<<8G;e>~<$uK48{pM$ zA~=*_yu6tRbxxEQFI6%3Gg{nIQLL9 zmF{`ZLDEWAG`S)1D8B&*vNvNXhz(gM!YDw-NU-`Mz&PZK2p$>$VKkFrBYAbn{=|oQ z=ASiI0D>Au>6#~F44~t1xV(m}O>&HxhV_CmMUZt>i&XhmLT=-_j>q= zx(g&XG5`UR+sT?nT1&Q*SJ?Os<`b=?y+d)Tn3#W;9;k*ZN)#a6Ao#>%Zu@3xplu_)b&-*7Dw$luRT=34nStz;zKPh@=?2`F*fe8fhP* zC|(xikhh98*V>duBc}N*bOX9{1z0?NDcP@IQo?G)CW!=Akx+;u=~?77d;Snr$m!%F z+W(42Gt?8}e^y=iq6?G6sZ$^NlU~6GLIlp3JWv4GjpGEn(J?O4K775rI|6$Mh=gtA zEysu#QR*5~SHOU_n^8NwSAK6&C{Nu-y5jbcj~%{)v*>3^N-@nbfVM2|`bVcyObe=3 zzqK~@XZpBM!l{*Td9BwMFFhS$uMyPr8bB?w#Bd%+4DLM-p8uJ9+13)@)&jaV?otW@ zBs7{|ybyU}i+dTtN)U0)doNu$5p`OEow>;6_XjY$G-2o&sXLV*ara|^Ojk}+ zW(3t{1&<0OZ+rCVg|Sgt}@(cOXY%<7LYmTR2GHUE%>ueEEGNeik?~j znod7-{yFLCCU~3!@2Hwgw|smN`%)UO4`r9W(&FE1!^dU8a0vV)_vwwnlFWX3ihxC+ zY8fffMDWg*hd2R+>E)k)J`FI4hVb}(fEIxN8&C@1|L*yp|NGw)Ssbtl+Y&0ZG2MQe!7%jpb+Z6%ZrrR|<93w~$Jif4sjTcQ2?~GdXlYN6y+s zp2h5nZ+@n~Q4c8SdfXAja;T*mXRq1dzPFfB)7E40BkJrZ!%e^>T4{kE`0Sq^c+=+r z`u-?#7Abl0)ckX6x0}xiwYP>pH)P)`O}5wUHGhWvrFcAsz4C-X&jNMR#EVboyj<5g z|BfYuL)T}zi=dm;|B<~W=w|hwuc<{vHZP zssPk)zl+<@LPsV;CHZ=;yJ@Ao80pS7DQbjgMJE(`nlsAczjS9-Ri~O*hmgr!pPVBH z$Ol=T3ICJ@#3F6c>)&RdVMYH_791PUMtUH@2@sJ}W9Ek1N!f>4$vZbo!*>*)p`*cJ z^MSgWU3B!7@pPhA6J7>;rXk_R<{EYsPAXwvHw%(tL5esDEm28{DeYohH!DAA)ta8psLGO7NG1332 z{9XWu5&r<5C`D=;CJhjGm`-(KDfYaXi?eTi_46RPdb9ZT`2Eycgtr zLl-_-h9=RuZ9-ix-l>Rvr*XF`oi$X@)L1Gly2a^biS zcaaj-UF&kMcMZ2g;t5vBkaI?+cmEWi`31gMPR{tRN~vJ*@}D(aaahCyvZO7hdFO@n zoQ9&)(zKNb&q{4wj@;LJZHCU&ztv*!Xbo2$sCT_)}v_g}I2>B|Ko5>ovP~ zE=SRC)Z4MCX6~yQq@ds-`{s^#^86|Ea``tymy)TRT12EEy$^>CZ;H+{2E3C#;~oi3 zaHRjf%zBgSLM1GY_O_~tob>tTA?et?5O593W8Gp)iY$4h5y!ggrIe|n-@zqmGO-fh zrh4xqZ?j?i4CC5r>iClFi7zYdQuQcMeND5gVEye$w+n;`5e0Df;j!KuH%qTP9$Nv& zfiO(-mng*FXgR9C$HPonE@x|m68g0hVBVw$Px)`kl=Sz7fH@CK?7L6bOU|c^nT?kW z58yf*n}ykkA$$hepdt*;J?*oM4QSU!2adTOAkG`!hMSx_$}l_2Gmck|nrb6zD^lBM zZNexTx=~8Ct6MTr_iPQ4=y*X*PTDN4)NsXEu_rUN`ms*2^BnF5~4m)sE! zK+s`=PENBMTxJ5qAR18(BK_nGmkYljH-N!Y$I)oog?aYfi(4VjFB4DIdS_BP%3llK|rYshf8j{TmC;>eR&|1?H4vF zlo*pW%h+C963W(OZ4kv!D#^YS3Q>r$MfSZA3E4*}lO;)(vP27E$SzwLOCn1VzVnRt z_xpX{_s9FkyUpGGJkNdZbFOn;*U?h;E%zLbM1)AfwS@<7d;kqb1kf)vRE-Hd_CyQD zvA*D7VcXSsnatt?nt7DTucn{OZ_2S-Isg1$rtAj&Apg+Fj+_3@V<((J7HqI!w)YrM}Q=23f5d zZ|Z*d-1_^GW;C3)YN^U zG-86o$~;3{YJ6ty(374?+xFRU+cSaX%gqMs;|HVRGd~QU`S>*>!`=VzJr#eyfaq|e zm8&0UieBF}9&D;*WEc`Av3WKt^j6)1R?Pur_rG-RFR!BC#H*#_iVuippZL-wocUa$ zP`tKD7#Ok#O++}+9#h{xoX(&>ob&VX=RkSRlBVv=%BsK?;U8ZtJf@m9P7@tIf&Pir zgt*`zkb$SeyRVd{B~}&+*)3QczKSAu^|DUO^S-Z*ce8z)j88$$InA(Tgh^SCQxZ8| z9u_{)!eN-`6N?=J7E|W4b|g1*=R1~vmfSl{`uI>Yoylu)%D>Kk zt_Cv`n>2UFie6J*3+-U0rN8hi>Q;t??E(%B-(xyDs>Sue*q~A4gE=?R6PTQcP39<| zP`fMgK5T1Y6+JPwc8GOqm$rGq6_o<94tG~(}j)u6MoK4bl)H#ka!`Z7N=A>dJYjTk)rjk7odiF|ZUc2i5I~L)<2Co=!&~Mh< z;Sm-bA~e{s&E2oPq-kxT5!p~(EI3PRieug#R?d)KH|(W8p}J2(F8#!?%VyG|d$J%Z z$aC>+$(7;j?GKj)yVS%M?e#R#i>hKs2lZxu^FLxFc7v|DL#A5tS+)|wiee>uU!Exx zI11CH6X7{#SLg#A`X~NcYNPx}^tiXd!E}C9Zit(cJ{+YHRp#Zs1v*Ypj!W7 z5fI7G<4V~6sTnCQ1+zH35@fQ9*-p>-8wnd;r0-%pZNL5DPL<|PJY+pRcOwgVdh!y& zyS_5R7rAx_SYHzEGZ)Wm?M|%U%L+;i)lwVhkFyentqiU~ZdKkRy)lv+k&?R@_OgbA z2m2|6u)W+0_gnFGgD(&cnKD}5f8xXG8bvg1RM_rydvmT#2+YIkY^fYJcGF zmgT$_KalxB)S~-c@=ZcPG5u+M;}affaW}giO!s8K+>~BcipO42`g*t2`>VCf0U|;M zF4>Kq1Me64giqON1~X6U1T*i8UU(O|{O8d4HG%XNb&hi{(CP5SgZ!P1iid`WyMeA{ z&+>rO&Q!U? zZ^Ut%(No*kn}+9br&D!KMRDrzl>VIrpJeR(T{bwzL}XK(iyqZfNHi9&9>NyRs|>P% z#q#G;!VR>1m;^PXW8pETOZ!sw`<}LId;FnI$I!L@Su5CT{mO9$>))+^&KKM8D#fau z%f;}}9k|ALsF?FSM2mf%8Chc^bR4iuA-WKr-N_-1rU$>>MAb0CQ4P$6+zTf{cz)iH z$SS5kuYc@QWPC@aOZ3%vx@)q&&&YdjbFV)kx?XzqtIWlR(UeFj57IWFxr@ImCzuhI zmE$T#e2;?feDSP!q4ICM0elV_I$6SROlSV1v=Ay(9=sEU$P&86Sq})@iN|3rm{!2(R`4bg*L&8 zbU42YnGCsb@LaTRGSt%*A0IV5DBu#mvB(-Xa(rYwTiWpZ!(jalN3H6tN9&)2T9$p~ z;WRyrg{edkh{*IRdBskv;Q9;led@GS9`{O6>_ac+(fx8kGE7hr|EGYOml;(H-eC$7 zS)G=amrS4d*$L6_l0x436Cf{;vHCiUBnC&E= zA1lO%kH>;p`vT8pf*sLBpXe8qP~#~5NjR-4MVxm8zo;?F!6)W(L{O_A!_&P_E~N0P zp)Vn;Z=BEL9eWtxGV|fK8Kv z;n9qkyZWSu`6QK%az|734r@5wV{9nvIB4h&-Q`*4dFxVWiX_)HadeYu*+X~t8eH3T z!qD!-n_uz+^G~K1b9srLEzdhwD;Jl7RAp3SHm~o}LyZLHb-s0;Q&d>V>g-dkEkp*~ zXzUkuOm0g|K9pf0YL?&H)PBg{+*#WD`JRP>Jqtp2l?P=b7Hcm$8OiO|;_VHVgzY7_ z*$-tdr*hR821*djs`pIljmpZFh!}DU~raf>dGx_<*g68n)QHT(o2apb+0^GqKSpS7z zvmQKdgPnF1G2da%H1@;7wzw>^Gq>4^uhP4l^$O>QF`#!;sW~TXar?UQ1D@hL-EeGW z%(UzoUXM8)C7mUn`t}+=5VT=gQ3!q@I*+_)OD$OV4dYQA4V$l};B@qV;zW;ASy=wn zH=cnj!m^uCM#ZVBEXXrfGoxE>=wnr7NEF*MLnjDuMHN=$+_ieHL?C$y6;%O@=*w^{X!>NQox=~kSWuSwOJ-K?i}3+~EjQ)h zjy*3M)^ri$mzOw!$kgg{%VQ-)_VMBG*l_WuM0Ut)LXpbD32=gyPGJCoa;9%>B~R}Z|jcA#a+H!c2YBw_H0DG<8I6%Ka@E$i66 zW~8<|OqVzgNeg9{>YNF-^W$7JSB>%C2lY1csfeGz{RGA3X-BJS$+GZ6;|Io^Vlj}C zC8MkarRQ;|j&w(D%|Aa?mu2VVehz&5J7*ZUMcn?=DiE+TRkv-WzVYWv;0BSj{nv1N zvj_Rtbz3*S{oPdmJGbq>K9Aa7+I*$%x7d0+aN|ew_U|8Llg9zSU^qL#2c)`9%0}S! zX!Q2xX5H58t8H=fIIr#TZ`WvIPjhy4L97WLaf<&8)U@f}PB`&ByE z)avj=TB2gS_G9Cdi}GnyON|I(pIba}1BG?Zx4Na`qSPWK&^u1a9HUrL4mFY8_8jgE zHYtDg9p{xGl}Sx=ma@ZDOz*8(n?!o|TjqIVEu9xVqKTw&3Wd64KAG|StZy{tJ>udq zMxhoi8Yo|E&OlDM_gInJJk$Fc`5q0 z$dmW>`#d?)fdk15(VvK+p8sVCGh-C*5{d_z!kZBgfx#2s-)iJ2o%a zJE7X1XFW`Ju)dms_x;kSu21~&S3bR1Ae~sAGI#ux|DnR?EeFk_Ja+lTf^-;URX_!i zYusxSQNbTCE`^}TaNm)can3#{li_ipFy$d@>Ul9cr4?pPM@II9J$m)ja4zv^POD)q zQUNjwex>Zf<^5ge?pImjEYN_?qE`k6r}BI&XD=w@aDbPYodRtnw3%_~e&IVi+JA3T z+_TE&-^vJ=?kY>Ij1W#KyP?Tlp#oasUk{>jt&n=GoR+UF4M4gU))5<{<)ry*OvVAX zoF8GP4+pI%^kRk0X;}^L9zQ$W@D&XQX?BqedCoohTC_gjeFWt%g=< z7uuiO7E0O0@_N=c7Yq(f%jYqzJm3k57QsCu|B01bD4ARInE6EK**F%I8;EsQuqa5x zDaUd`3oeh4C#PTsN5O6J(;#It=A=B7BUgC1Z66*P zsTU;M7{?bK63#-q%g^6M8*;L?&xE=O|rtL@y$rG=Kl87O+tVWH@X$`2|~vMigW7fGWYc013wIn z<3}k>uOS!Fc&+OAJl(FSNJmkPRl3yJ8ayFU>O3rnReLWjK(X~z z|H!Z^-|~WG`HOrYoK0-3N!LY=K25}o!XW)W8Gs@n3HASr04-u|O3v`2>Yax2b$q`G zA_|xnkxp;r(hG*x<~h5Na6|hu+!M=N@Z6y1r_7Z4XADs#Wblk?b(rT%Uw>pB=Dx;` z2mf2h8ItN5pr7@%o+I);>g~i7mp9`S<+Nx_eAC|}vRG5ZJ1Fj3k>LE<7mUiFnE65NMq&B(0Vxu` zFzVTF>-o6q+9o=rsHkflnBx5hO1CBFB2Wi?xTTT(JZrlv*gRBTZo2ZnnCUL=+Abz?ikSzd7TZCn90jSLcA{q*$-XEdwMUA@ss z762no>??Kqq4rg6L_u-y^SzC6Z3j}X`ZHqhjXB0h#L$c6mF?9i`Kh}5o|@H_2XsOa zRw=GqbSFp}tbMtqPvGx6N;#O!N`4kx`pv4DeuEXl3eD81PDl!v~IQ8vFB0xeDTDB4wJ)w&6 zn~x-=>{KyisA6gm9wVqmD87%a;LyMRfD;vxsMSdfUIdhb&>E&kdUdBfPdfFPWeSRq zpn5h`Mj+pDnWs2p{^5J66K3@H_`gSyfG1vK>9-#a$$7TE3&OP(T#~hMTxNblW3#ir z2|g`?0L)Sp{`q?KlOWvx^(<|-^dPw;MgKxeUQrqNh3?3EVM(WC189-cb=1iwQZFZF z*JCz~sa|~7=i7hF2=gbz(XG;a(spggiLp;H=t6V^8*K<;RHJiPc*C%=GDz(#1rL51(y@{*S<8^f}yTf*FDt6!iM1RSmpXnbV& ztzz~mCKpnT6{s?>c1M?I5J5@sC9MJa`ov^JV7mIai}GH$LM1{9we+7wpw2i(tutVv z;@eXg`xog}Eq7_!P_y##TG$NcP&|oz{8$@Kd2D8jV_mZ%<+)7GJK+p^T)ubzS1#m6 zK9ylKHg-ZB>S<3N%}8o~ahl4;_;*q;5?uU|;DP{NbZQ=iL3-8xEV88p`rz2#@UR1K z+EKOxE5AbzdijJZviknuT$jJ^Aj@$d{1ol$5XqZ_yQYyaV{WcV)JzFQqZnCd8fmrz77rDq2T{`JYt*^02atXFtO~na?C7*lQX7 zq1uB9B($hAAEk}GLw(uw|5UK{bDU&2FhiSA$+x>(GJ#t2g`Rx-Dx1Fgcg?<&)5;^4 zB>3JByG{jNjb{qAUTuil7uqMwxo^Ym;+bJ{9(fOT)EqPaF@DqNF(+C2q#2s4@KHYG%=9ibXKC@n7ISlwUK0ygxVoMpuLQ|Y|KPC3SU zFU0URTbRB)J^I4P=D;zy+xD2~ZV=krI&a2oyP%c9rEvyQzy6E+?+HZ^$vgFcz@mqGF0)#DUV(ug z&j!B6-l`^M%JyrOIS8te zZxX_PIeGHKzGTP+93dBQgj}G*Bf5Z;OIZ=}f?OcKll6qT%cyK^VI#{0rx~SXI*Znh zaHqFt^Yvt0tQgYRKjTGksTo%rLL$jm$+JxrfTJ{bgqQb~7q0{4I~vyFoX7lozw1u9 zUO76`z)a0-U0b%;I{pWLHZu3{4$2OjbSz&(E>U~c&b31k1x$l((@Hhpk6nSH;04|{ zUTs2Y$qQ3{%A)>~vxw!Nx3w9~oMTSLT3U8{K2Q?(ywq;AZ;|rU3r+M%9xaboM6ha| za-j`mq7t)NXG8L`w=Qq7QaMx}J1&2x3FmRV1+=H4@)s@+%mqOL+V8srHO@yU1@eAz zp00?vq~?}h!f~Ix%BUrODUY0>Xzqf($3MYDoXul45pZciqK+fZtE`Kn!%MaM#Pz$? zWHTe*L`4Lcul?|b%Qb|2Q2vD1G3{_V1PP))EP(fQ?03t%8t z!AxqYT!L%;(06VQb5aqYFCrZtT$J-l=9N|v7ORmJW?AIy*d1fdw*Z@YB5 z<5+9)eG3e|{(cJ#$np_RTloGlLW3ZZqG_(Q!x(D>J2_YqO<@^I;Pe25VHS+ZCX~c7 zhB?<$o`wrbKZh|jc4^J{8<)Ap{$0cG|5@V+IYJZiXK%!H9U52sf`tsQ#9L$HerolU zgre;a8>2vM@W8StmyX?9D-Ey6>a)wBFKed6Idgjw_CBjzf5}xpUGGZb!HZwOO?W5# zpt)*S7xdI-HJWtok~pDKc=@Nyr0(Lxo5v2XR%r4yf+;P3k|!+A$|29LG#cXbD53#WnnRQ+_>H`N$Bby4~RF{iNM-ElI~t zvm5uqI0wRnhbbT=D0dt3x=l2p{g)<_}kU?sa&<#*Q zJyh*qNIgz(|LkvU^BT|Ad*=rEx?38vo$^q}L20&R*7(2*rz*dZJ7$G3zp?6c=;DxA z(&EQj=i~oo3GbJiCr{A9UALTOAv$&)^dhs~B~3ljwY71iSK+d-T(TvO`|M-(li!hM zNbfyM6FL#7c9$8tr$0Zu?08PL_I;RO?bQZutMKQl>+F`dIeBCRe)||YynMD>geB6d zd{M!CZ&r`@6&F)jl01veZe-SsR1|<4oDiD@S5pLO97KQyq#MiYLP?cF8sKphMY5`R z76IO2kk+wUaTy6mPF{WW8JAd3V9wI2yn=z=i-PB#)$5$jk6s-S=v`UYUR)V`oN3Br zvTIs_d#Sh1*+;JC%R`h9h;FWHiSMdugT@jGodM61Ff`rx0OkH2hv|e#&lyNQSMgoj zK4Q6w2P?;{+|={Q@yj#q#QHz1G8us2x(Jr{H9r{8I3Ho?`F<%Vw@r8PCBDL#ml0{B zCg8gQ%~@CKS)l6S=#=ugcP0GS>pV2D>cvyHNO?rxgQ73O}J#VDPZe zBA!L3u`h{_e+|Jxytwj@n>N%EAku_d!cxhc z+GP|NiyB}q=3Yo4s7_-q70L)-YQr=oBWZ9-OIA=bdC#U8&-n|5hQ7Uw zV>1vTmLWpeMVAfH?{393cSDjwDzk|xYUY|JROP={ZD%;Ak}w;UI8?lsne(SCG=cv# z*-y6yc72d>RSSSK^h=;`t+d$jNLbaFd&$b|%Yd3k0X5-&$GjS3sPWDM%|FQSFSqG; z(+dl>LaAWniU3EeGMg?ZY*~qT_4o8}NsRJRw@~p#j=Krl8d5YfQ4wZ*SR<3qEK4h} zmb7bx+3rmN>b3d`zUW1daZd2KiX>X0UN>#NW?~T=23hqi%%xcl%=?#ZvAF!ykSDiF zIE}r_$)3?OjX4n?KJ?_+tHQshJwdNzLF{>P;^lh&Ni4I;+ZlPwj^VFteVRuy07d+T zkr5!ZBywO|iw`UUD-`KrB62dTW-=+f8VL`0k*6-x^P`cA+PABzFN@#dflpKG4~Agq zl=4*Wo%K-sJTMbFpVqda?#*a!xZm$}tM9+S!B;l&M!FA*iXEm?3;Hp3XoLJ;^osPc z*)U_I4Kg%9fKL6QheA4(+mn{`qW(geVZTSAQRZ-O2L~%%uv1l^5B>HT%fEz?%y*fM zbQ8T}DS~&Oc2R}U6OD+1t<><;KAC$I(kF{GcK(Ah*%}uj{;nEjM|xxxnQ)6sM!_xK z*!@tS>7=g4iY-d?RAR9CamC#mcV5^`SP?!N%RH2NwQ(m2HMcS6(q*Fh-DohK5dD7F zOq96P_1UNo?Yve!AEavih?0PYTIQ13q47uJB~jgCP(DpP%p_{q@zl0w#8XZqr4W3*h0kPo zBILTb{=e-=)nGLI(d{=SPzUM|ch+iQ%8Kn;53a14F#nz7PwZI|rTlsMOG#0ZCZ=&I z%FNJ3&?j2_5yPT;w73-0Ow59NG@yyIG4N?G0`3+=LcgL`$K#w-nXb?)*a#=`g0k8e z9gin5L{guct2?(z7i#P~=euDL0c>dv7XBvK!){MyZ!|msPzHeEOP&&WG*ZB8Ir?W{pP` zJS_C2JCQ^{4FsP4R0w>SGBcwx_;YxlXIj|G_Y|vu6^hK`+V$lXqDLYZUFpcROfixbyBh)P5s(b@1hIG$6q48<97bm+!vLG&2dW*UqB;f;ansM zF{sFYM%4%M84{^x;oqj0k6F4?ihY_qteVJay&DR9v2VX6;Ct#}finD~zw$erIX=Vd zmW$ob8xl}@^8N%{M!5w!znI3AfocXz0ON6ZcX>~(QNhP}lMj-ehrwlMIqI`7V>~?K zx6wkGuIaX)d@GkQUzD5j-%PTTA=fX6V`O#-wA`}X;}aij%tyc~m_IgQ5eH(3PbTaI zJS#jce$^5S;tDa)p?NZ(v-xOgEsw)`zeJ|alqAb~LTSPpwL(hv6K(}>PRbf%0hJfyn%vAKTCMB5ecA#RKio>bB-~ohr8D*6v=9BI9JjKh zsW4GRAFmI;jva;vSkmZ$n0X82G;DmX==$RelWu}U>3uG~UJVp{a?=*x+NWCqb}YGI zK|C1eAj`FQ6@S}kpqxJTBzNpZnrZn)v;qa=u`bOgmum9xfsV4Uguo<3BgKhPf&54L zcqKk68u@rM;>_(>kpf@?iW{kEvGTQ3F1t0V92I)Kat=5Ab!tde<9La;^}_1(G<%Rqe@nknq+7cL^R6&`f=glJUp11YiJmBY z*o2HgWP68Tdtu$Nr=4wHia+}ya4r(ihVzhbt@J{40u_hjhZ_+2% zj(esJo7t`BuAPniOBVD%Y6}>PI5q>dMYnWuZCuet_<3sbfIH+~ais|=i_QeR2~M5J{NiIqHy z*&0Nl4CR4RV2FVhs}qQCc!cSsC@B1Lc5&b73|9}^Pl1(70+7dV{hP;^LNY?l?a* zmdoapg_uy_^<9s6@^nO23m(mc*Fgq{^ZzUY?)o3YX}oZd8+zEL_1*iyjjhLjF7R<& zg?j`dQ_QwG?fX?$*rVT=6Q=MQGb^2C4}ge)&Z>)(*0w!o(|v=Gni6;bJMz4;OH z5nxdL5}34Y3FPB4Gqb$@>5bDT-w1JfTCuEgbD~gV!R_yPIJ&WD*MUN6Jq~=y{3NTnmu@Z=2^CC*TvroGahRlwO0I<&>OI#`Q#Z9Wm2TQe zF%{6mc|u>{8TqY&Z1JQLTncY8Z*GJSt>yyYBo+2Id^l5Nx_qHs%U+QM{%sb^4N#1MuzkjUI}+hMV23=`b%+ACkqyibxEG4N2`^z^aGhRz0q5!&`H`wNjlsUj zC-;Ot8<*L9Hm(cCTXk`KVu-U?-t{0g{)m#NcI5%V;xO;AYqL?14x7WPQ~v!E>9t)C z5ifm|Z>gkGLY*NH?hP}W#i7t6xmW;CwSf)t?T8|nVw3*$-48+(&~N*r#g}-=#l(RM zFH#qS?Vl7NhLJYhTW>xOQHCi{hqG#-g7w-U+fT=mW*gZVz6nLaR(cqXsU>VGwS-k~ zWDn=nhh`zcMGo1=>^0dY`H>jO8FikMnB6b@FOh0eft*TF7@Zi{!(gn&x{{{M{c@Kk zq*O5U$MWogsII>tfZebU67VgNI^U^L3ig3lvfSwzE&*#4sZfyQRAWwv+Cwcq;;nt{ zeY+%>id!SpkZNR!WvzkpQhheB$(`%nytJDUw#~bq} zE+9d=UofiNfDNdlp8rkil?UCT7i&AOXN=|7ssaW>B_73a9v6J z>@SzJj|@u`8RPrjSv_h2i}qJEGZs|?kcmQ;8^4<-l5=jvTZnFG?(gDW*W{_&DYX7H zjfPoK+w@qGoXI&S3*_Sh5XY;{FVkxE60N-NAZpju_zlf{eC|KgcRAErHuXeV%~=UZ zt(eZ@*AjMWlYKMMJGF^t|Lvy;pg@iQK;c7Wl{;jh05-mT!Z0}IMq@%$(Wg>1xM*3z zso4R5jj6Am(64CAO7fY|;RaFnneEICV)@Ms9lV+XuiR#sA82GUx*7dMl((@PI0))c zKBzDj%3MA5XX&fwQuN&g@1}_#=SToIngiTe32@{3+U4zGgY98lfP3XA7quFyWpq>S zLY-r-OTFqf?YVu~^TUye=l=^wGYSe`5!Ek;>LSBgSE{yC>(zX{w#DQxC6U4gb0)8! ztX)@i1=rS?BJ?ZA%zJ4t|6((V-+>e`JCH(j3u_}B(Z}k=h=4=k zJL>b6f#W$N;ys}*Cq<7Lk3Td$T+i_h94{8-EzdIdCF0BO{_AU(8*c^-gbe69{C`ZO zMWI(n*MXd1=4a|ES34bNM!hP|xVq;YV}Fjv@tu9VOJgGlfoqT8_0lZ`HZ!+nolpTb zEV))mne>;Ad#EHhR3}u#0H;#QBT|Y=ace-h(3$9Bpj_JkTru(b!>?Esb(n|4YYtbE z&GM%QF!E<#ZqYjq@||1U&yO)C{m@9Pw<%v^*AB4TpS$sh{Q4t9F@7poipGP-HcG}! z$DZL&{WMmtsUsXI>G2}^RH1}Tl=RT(>Dwxe?9J2@31)WC%y14&t2NQ&wy=(B&`Qr? z&ZS)p_w0|BEPZtDpqz6cHuKd~GI(gHc9!gl9xB-ToJRM|<7b7^0%EuuDoAKqr-l|M z2rUS^QDx^yjzx|$XCg-uA&5nQC%Ot?m9ECB1|#KWNRYHtx%VyABduaPb!nBzDJ~E-+cvM%r3HFD*EyC1^!mY6?q_3SGB~fT{nP>irKfg? zcyJ{a_#iM>Y_GTjg7$B#}Vc0nSLaEwt@y;p4Vj?p&-DKp*+}XZNht#I_ z%$}dre2vAti%!K|#rvr-vJMv3dHA*e%^tOR%BARgL}X{~Z~y$}+H5`v^#-)HAWtCo z$+~QyD~jlyX6juRGBG$`3}f!Sam@h+SrH%l?~QX@Rs*Lp zFZr1}&-*-AT_{jp5Q^2U^7Bc9ED>@!Hgs&^R@fHvriKYlq~Ia{lF9*&!hosWKC7MZ zIescDKsOu_AiLc|tR_B1(&ZDApLL1}I5J8^>Bx@t_Tkw3)YTpqv+3}`JVL{ZS5L6U zKswqNM=w$#(a)xBh_Yz}RIx>L80K9f%{q^>pyAq*z%r-WXi1Tw0T87VW>nB8`!2%9 zc&1E*)-f@Di8c)Fq6}DK7};Cf*GwB&)ri&iXD@v<$M8L`uCXOO&+iQC-_)MGivLENOcTU$#prWIqSJnN-;BL~3$FID`_ zFC2y`nO%;D1)u3$P4X_G_65E6ibF8C89Sn7rUl9TYaKUevW9do+9uA5^(fukWW}eu zjzB^e+FgT8=3>8SLI*X%RGH;+p2P<91{}_;f!vDt;NfLr6;R?Gz|pZU!b-RS*;+JMF=tE=c@#yasWwo zT}Kg_6R$#cD&GYKV!HAjz~0=1Tc1&f3prUpfygJUIZ+)91hjN&pNBS)KqHQ4u=L#b z?+>Hj-Y6{Q21FF!OnYkm3b)5?iq-zn?uY94=FKtfTD&^H?6tX}*+8|RfZMx%np4Lr zyyF*69!Qa=GlkNW`CDJ|Q!!@$pCV=1x2xVsC_V=I z!?UY7(pzhR72&|eGBAAn?Addn(p*1x&kX0WIXk2tC!rq!s!bT`ZG5ommamE_jTAcY zd*FgOvz}sX_->eErb{Zaf#dto=WKF$R*$73Fp4TKmqn79f7RbO;=9!LkgF1zoA$B) zrtpc6#2(M1QO9iAUDDDJ>5tq_OXDn6`V$^A=GPzrveep&??5IaKoxhW!1qMP6#z3;iM>$N&{_&7>v#&b>17?a2F=bFGHM0b&%y1&LJ0bKF= zZtui5AY2Ag375!FbyQ#DAMmP!zUJMVIq?QNshgsErjqYlrZm+yle>N6mHjUwM@Q~Z z(nY6)+{_Jp7nqMXxvXw!+|}{9-Xb<*C0%~XnDE$yG;7c1An*uY2f;;FYbO6Hl9udP z@2T6fP4Oy1;zm#nTK{(ylES0H+hmjvtE}WRcue=caSy16B`|zoNF1m^_^CDOjwu)K zUoS#%`7OHANH(MiAl9i-^h{>Gw{c=J#~|KcWh5oX&-fF3Y@p9wgn5mIMuXi`{I<#LG27PZ z$x{+Zby!fOCUA5DD|ZaiQN=S!)Tf24K;@=t5Jj#&Sl4)fo_LbWtjVmtxkUc9N){}E zEFpcnCG0Hm)#gZJ(l(91AP@@iY^$X%Q~rY1hb6XYKQk86dLr!^ixRxP`)WpBYCz1H z8jxzbzkJO-HuHb=8swV(&_f3e(S_!qjFERlIu^>6lo;iEnS64K4hR=7xr~vft=LKT z*~H($HQ*~*YDx0C0d)dQTQW}9uvk>pM`)ks^9}6OK$^M}NR6G{Uy2u7Vr-E}ut`94 zDrV5U$l4a!5n%m9o1n<0y{gN=@!w`pgr=o4_l9}}&5McM5wS(^5Vx*je`#+rYfw<~ zy9LSKnhw!YKw2IJ*g%3DjWU_|00g-=r$flA!l59*Vj`L;`}5;vQ0~y?lzJHE_DIb$ zq5tW4^bfZtAo|;19*sKV;B-@7k{jVDZCN*P;}_lpI8V7C9d+f+eH4`MQRt|f;kB-g z7Y62@8#r}zBEM>IWoHy=F*OvpL1%~&Waa+}1;v$vBcN{FM+EYoR+yjxau?xG(MylZ zth>3M_RZ4U6!&!?&%SXjS|c5p>!Zb+{N39155K}|y~K2RO>u{Wcl`fooE=%s`H&@0 zmn0p@{-<~HTjKMeuk8iWk(L{#gZ~5``0BKPj{1vC<#g$*+Qb@IsJS_B%kiC(5OY$R z7x;OGrY7u^!0IN1D`A@o57iKlqqoKMvJTqe=^w!L~7$)%UFJ7uUD;mSW%1Q9A^Qj>E1_zGMBY}(@YeX#n9LNTUG}tJ8LuQwVWQu=c&Jm2VEkz+=!Yf>C`3WE%N8M@j8v*Zt;_6|g z;L(mBerb?+_`NuFMY3ZgDm$rn$3rJTPwWWF9`@uxD6ywvyHxj~qxU=r7oztqmZ!k5 zm&&BnZ>i_HvX99mMhZeUt$Zdj=%2db?7gjffJ)2Gbw;9K&1ZZDySHf%I!c4|>qcly z5p#_0KgW@@1NMVBg#ULxBuzc^Pj?9TLhR&^wqXPdkIN#{3S#V!p zDBqa*V|V-Mq~rvD8vV6RnvAX;N84uik`O?vxlE9E6k)U*o8hhx(1Z~%x-witsPHI* z{LG&0%5>ds(QGQ1li#@CS?+WAWpx;L*x2n}?ELvvtZOUK{ zu|Pw-?k7Xb33+LuZ5wd(f4q+(pL&QQUnmZpP4J9A>b`g{@`KNnEs-~;Ct(&q!nU$Z z1!v9IoVE6xwfp+!n3f$TiukS(<|Z=Ln&jk-`?AoR$)!k!}3*@>ooHGoi50xz->a6@;`=%R)3nHA9-Z9lg)y6v4k11fL`(E%)g+@4j+$k@G<~A@tI}ehy7FSP%kk_b;%G;-E|5l^ig%7m58do&)%3ZRxvPhb z7=UrklW*@Lt1p3A;tZ8lc!{cPsB1jX!*Cc;HaG(`;&$=s?l>aEirh1Y-4{+I{CImQ zXWekOO{C+>rA(%eZvAxyf?p(~e$3Iz{GH_1K{daNyxaj|Gi1C5ED$XU$E#r)ThiDa zF1ln3Pw(&!46{RmI&j8Z;05*516ZM-IkcnOI@0M1WrQa6!TU?X?M~J(A}VXY9+8ev z?3<0_e(u<4^Lyqbca3Ex*PUAS`%b!|u0UQqn5^4i0;57QQd;WvpDSR#qnpI^#uON( z2dLwmMUyMlj376>PiZ{|TOp+=i8JlyAspYmYiJX#9PlfBjGiYScsR*;g;a zU+g#6mYe8_Kbh{7GvuLHgzUSLn^~6fRcG?hCf|JEiNUGWp`KcK>Zz^EL-#Q7P?3bE z;c7f`u_l`RBEK9oX_}qPq`wEl3F3JMlaDn;&M6yQIFpcg?{XQvam4KB{uJ)ZKY4${E)A2$>enw3XuLMKlER4Dp2yTf^hQCeja=Ilqz3fx+a^xjvbvS2r3gg)NogK#K zJglWlEYf5pe>{gLbf4oug7|DX7cf2vp4hrSXNetLG#^+Z1ZOhJ@8Sc)1R)aWIeiqinj3M^5 zKOujoa~P&;CjVr*1ZU9WRnz}OlDO&7FQTvhIBa!l58s70CEyZ>bg_vnomm@Ce3ddi zx;U7D#~Hc2f?37j1_9^fE~a2_8Gay7{xZmkM!>gg4}trBXZgyqisj>~CS&g?;wX4W z!k7(h6jc|+raI_H6j`#>R%yimwb#2bi#$cmFa$i-MG2LvS>Zr=B;H1*8&mJMM)JCc zR?Y0q2%^y0!Z(_Q4m<~KGmf<5;=$5u@IBeOR8ZZ2QQL)I?%)!!O1tqxH82%Gr-+;g zM0vS{0pSIufQ-U!9#9>`wC`xIL8%C$tE_ORdOkxlEk5ae&19N6n0g@?s!41>)A~pm zze#2=3>v4{Ns&JpJ5whb+oNxP65c6c4v$URp&=6>p`#%f6NWA|J|KF1e_{ngN$8@f zbS8*XfZ)dgv(e&31d~fp-no}T#jB-&7|nutkiZJ~o5U0eEQ2MBrJw1ie*o|Fvk*_L z6cR&E6v0*5b-nQ)D%((u$~Lq*8aY6RIJ8i0<`PriBWdd`u3bG@J)B;eMa_#ZQ}lq+ zST$zs_k6T*>pG$RIt=CY1Gp!r_tSmem7qLH-<2x7vimP2ECJGqpOBGU0g0Uf$%3$X z06&NU@Tacp`n5Uf?F;0uFd(_9r~7TBQ~iGN{u;G*i0A;$1mwO#iP!Eh3&h1?C31h1?l5n_4ni(Aok_C&0 zB1kX+`0atAi33YQ)@Pxyk$@P8c%Ir6^kboEvAS+4=em`Bh_PIWdJ#5C;rR=X1-zF6 z1OBfE{i|(nTK2tiXxHjrzKa<2EJjgV4|kq$RgZZEUreb+;2)l@gS7O}dO&O$`Nh-M zuJ&tw!(4(7)H>qV*FM>qW$Zkmfw?~|a>()`S2z1ztVrG6XAH8uM3(a$WoCXCny`{h zt*0bGF){;ywAsgfBW6U06OF1=ms6ah&(52ZSG9 z7mS$BmZzKp)=~!3bV8NJk*FxN$kdg&7)Wy~p7`?>=sz+}yUlTk4!cxditK5nN%LGq;@s zR@G!eImt>g>WF}HT*jE%Rg&ln*V6tnT3r zwtLkpJFUPU&mDKmbSa2-wffFd(75tIC_$~NTKwtpHqHQ`Hvj%~`J!A+yn3HB9S(6U zkH0|uBAWjxeWdLNh7L8Zgw3oT8PlfCpbNlc^cx!BL70r53eVu`h$2ljt@>qYzq30~ zBGh>urpHB)Ja1bw7AfTP`b(EzzmFF)UZ=xiT8;@GY<}`89|x`?>BVek2mK@9O8Tt>|`TZvbD7I3W99JrTmsX^<#4S-gGa|-*;EfBtppE;~<-C*&|sc$x0m2ARN0W+cA<^NPgFS`g}j%-|zR&`;Xo|x*zws@B4aP z*YkRgmo)mb%*<|7S}{+i5SoN`47on3TMqM?LS$ilXzM=l6U#p$@;V?&;K$Ki@>$mQ zdnAJAxMdCTrrqIKs1;S(vb8AF)N{NlwC?0{tZc-uMQ(QVndzo>IyFUAoy-}%Z#5y= z&ow{dMl~Oj#Pz!)#AxPD3is|at=Hi1h>uC@mndM|eW>!mqmVJnylGbEh_R?(=K*OY zcQIUTz-ce#%J>0KYgw6Q!6FjfV&0XS)4x4=pYtIVQ~U$MFDm&c^j9SBiUd-4c1zf}O{OW7}xodw`elYmu5x|GrfmSK~3qcDGonU~|X2wWuzo`~D~0 zI8WT*P0gKey|MZj1>vqa>kmm&J3rT`vbKJ>$!Z;=n6qh9EW>jT+P+YH#JT#L<8(T> zz;LUhxP=F&LN6?3|EOqfd27OypI>=)e!aCxX5sjgw_6SOv&QxqMNYimOwCWcW1U`r zx4yC0ESme4X^4bTx7rHZ*7vrKH8A)=jSL*C>c&Ql)Enr2h(FJP`179~GztOxyIBD_FOSz?LCeR?aBxzKSs0%+O)5|GgO0eKdKEy0QqGq7s zw)&Dl01DPv9gH1lSUrUa0de)`(?N$Ip=g@+b@xVsjZ~=Kn-0d2sy0R?Aj?QvJfx7J zqI9a~fhaB6(*o?txU3&14^LY%yssPBs3wa4G$1UIT0)v4P;BUCr;;c3kFW=_{Pcpj~X zmni3rR4o6c97~g7dfjDp4tT0@XD-jl*mCMraF~Mx-u*fEprikD?$!C)%2PK?-cRR^ zbdoS$`Rv}XEAG6d@METH=tX_wdAVawaq1u)KTur_R^8vSISEgZA{?^ui_q| z6ZmEw?f)b6u=|+96h;orkuf4flK4~agk^#H5b=Y?E!{q zJ*cJN7rUXknly{bwi=N^uQ^*Hz86e3@D`~+H{-A@{8sgPxPCRfOqL`r1hO9qGl6G( zx}m}I*LUFgZTX1tQi`K}P80IGToQQ=4%WD5RXFRTHn{ZM5GzuN)#p-M9enmx9MaRv z`K7&gQ)OsmAU?jjwM^;e^L(kQs-&w$rr?!%D5;Sn=`w9qgitJO2yoyxI=ChMvn7CP zP!W?*8G6?;*<8^7{VDWQT}Oo$_yT)!$CyQM-mgsTjABWbTdv!1><+zZ>w5j2s=nl6 z9ffK0UO|LE9q3MQrUlV;C!Xk$m>4!_)d#Z#T&N2cH~Dvw{Al>ygprH%Ncs|Zw`DfD zF1#PjQvL=>qn3z?A{r=)IB6VkOR18Ttz&lj4HA!;&3tS#B~vSoi>)d%R?7AggvdI1rF{05RKPu6P9Vn1b1nf)$iU9%{DcpLix2tY`Zr*yMoxH9EM>u=(7Jd6Ta= z_>PLnoiX7yVX&~bfwwV3qz}E6BFPqLewITO-hJszkpz|Kk|=VTpW1(jG--MSovl)` zClho+FL5H4!SYWpbZ@CYLgMQ)JugJt)PfOcpCzGyk0sb#vA=0I^LYGov zI;$xbOQ|%#1AU4e;12wymz$=@%o$d86=Nd%#o5%hiYZ7T7R@OhM2r2Kwdd-ly5=-3 zTm}@YMCG5U-W=7hDuZ=s%JO8S@P-@1OLe`IjRuRy5({!0 zCyL&eCt*r3gQtk2_ueQdYbBDeuxP zemYS5(p@%m=zFkvHb+282iyC!76NIb`weJ#Jshxn8)S)M6Ak}tP2ThE(3nGKZ0l2- z3Zsc_Bdf>-UFlzQsqM@rtQ`@G#Vsb#gNOIk@oguVja>fj+A#+tkKkq!k9nYj+PM;|z#{WZ zjPIgD`+1BwKV`6nuOT`B%zjT4Gbb!|i+;K+R>`QejFIA%@gtq?yhCc*K{>Zee;VBX zTjCXGt%!trF^WL-a&;!PVYrhf{f3uzpNtr=fN9F75kY|})8#|iRLpo=!G>0e@71DPF zr{7Nq7g^~&yG2TKT=4<=I5oy-Nrg-~Wai>Z0;E2>{H{^4d}eYd>@@s5GEyu5V$pwZ z5nnF4^(t`vb5rkSjq-DOSIH?8WdJM|WO{e}jz@i#7kXi_l4x}v2PwM`c8u<&l;o6l z-qwD6XG&_pq{~HI>kB8V-w|Hi?@+iKaO%ZWF zI?TwluYd~ZN}pbr~%1O;ITh<<;FdQ>#@Cx;qLX`_r4)AZg*q|KfKsk_h5~aV-B3kd# z7>@fjwe>Se3MmH;nBvNMHx?_C#oZ$M<8O+s7VpNX=`hIK`Q)D~aRS4iqn}-rKs!Pa zkdQP$F+{yf$^2#N?fp21_+7{Ri{_qedL5#9&rbz@uu?pndifGC5CCpSsmMrK|C-M~ z`uoXJXn_3XyD)A2Bz_leh?w+by}H+Xi+&OxZt6_pJaQ{$2qbstn)UY9b7ro46D?&jP#{+DD=71hvZH&G`VArK-CKNTDJx-n^Qh>je5kcKj{EC0=rq{t9lJz zmG+gUq#@Dc*r{Meus|@sUtflyG<@F3N(_}@Ct&mz-TJ^=J-`Bfyv9b(TN;=vxe4Q;;CVNuop_``CW~<>~N@rNMAD+Z{4Jg)Lb0q4z zuFH~pufMX>=&~M{H2-q!Zp;(IC~?13OU`4Z_|( z$~MU4Zvw?MgjeI;j}W&wwnTy3cWCN-MxQ>kCV$SEsV%GL_TE*Z4^fk?;rmFQ>s|Ov z^_){)etr652`dZmbR&?-K`wHTpfWXPbZ14n97ti zF#q$&b@dG{MCu`0D9SSBvH^AHqkGBrk`8l6+N&qQc62y5kOZqDxp^#oKYN3)rS z=R%KQ)v=g%R|!c{R}jc~Cpc%mGZ!Wm;N2j*nNt#azr5A!Z%_m4Cs@b;v_WOU48|@| z%QA_bZzIq0KTLD=@JwBqxX7%sHtAg}5n6XUA@X)YTKDwNptJAxwW=Q)SZr~{0JgE! zsK~S*umY(F!MZL5=iC^6)QXU!mui2s%MWIR*Io|#nf1al(!Z=)D~YRhCqIVSiiwd` zL4_F>!0$%n-2vqQa2iX>@pBRwF9dSnllrFqa z0DOayfN!kTz)?8p=zbM3d4a3qmPl=Kpk9qWPWcMAzZ%kpI&7PZ8P&ILgxD=vIBz;9;;?{04{R zU0?*vdFLlLl*lX1@9IdQES%$0k0FVUlCF0>_^{0%`KPs0??(>`E@!tAhQ) zEibO;7W2ig*d*T$=?m&3XK~{!W0R;1yKC+|8)9m|IVhK-HEH#OB!oY91BEfmzHDIj z=aCr{4B#kNlkaT-%54d^G;wwtfk6SwJ*|kqpkBoPV9;&W!IKwTJ!~c3oOZGoHllJu z!2)tiMo)TPA;R^D6Y8d6!zu||h#%Arkf@57ir-&~?j%uvVp(=(=^$0vg6)>w%Lhfs@*LiKKfw_MKi2Noe;T9PsQ<-uICOR9`O|7JIH)N?Iq$PBfGIA#vcoZMEX@oEQyK;lrn{omLa z(Yw3gW%6XHHNH_#-gRsJ-(EmJwyskx{du$%fX@_ zpEF643D4i~d~WM`@RMaL@tM}TygVoSGWxENKJW>)jP>(##&?VhF9mt+O~;J;!0wpf zsP7&B{$V{lzeT`Fv4E3y{*TcuN?%`e7mHL8HNWYvUwmx*47nCD4>d`ya1I{LldjYN z#nka>hdLh?eUPr>Uw>)5^o01wQp_b?X71>oe^YwOGEUxof)D-1cmm`#iEb@up z*!RoRs$-X;w39qPCKkegua-UiEJx9M3Ao3W@Wk{8Pi&j@{}p=kl}gLGAa2!;H}nA> zt*)2?cy#8{dC%pAyb%_Kx<4Pox%wRa8>f}MmxzkwPBihX_TzR2CnR=4N`h=zt)o)} zrRLDki5?gVlt}NMS4GB-FyM9<>qzO;zOU0Rv9gKAk(7YrTE_5c`Y<7G6<%Zo-o8X^ zToii3X@u-LL$A@TY`U_#62{V+WqeO=D zhO;-_r)-D(`LOFVQ4_6t*#|XFDB1Arzv&KVRvO zmjA^VxP{mHYhv=Bjh^o$v=~uBdNk>T79-^(9q*m>H0Z0{fZslN=GFMEll@DsH&;6u zcVlaxvBWWSzrN%02Xt?*SA`Oj8V@d!4$JGTPsfBjM`TZj$gjqw({CgC{tSUde;`1z z93ez-($Us&^=U&i__(}h^q&D#@(&j?PBm=N3BCw` z%f=^v9kBpxd$Jg zOD#4!g!%x88a3n`k4Zbu3Us@}8<7p}9NFN`0iZmrKy`f6W4KmbVSnONslAr3y~dX# zE!Rg_92@efhwAKus1Jsd%0=|vt1F)JVd4@I)JmD-+Mo|&*jBbceJ#18KPQaJtLxes zGL&;A9gK|~F3{g561(7WT`Hl$xTAU>{2bE@6=_2|#h)xyKfos8dT9NJ<$XTm!L z)8J5`W_)C7tCP(1xxQG>U)T4DkZU{L-v#cj8!E;B!^lGEeHNWUDn&+wVAi|M5FHYD z=S#1RV&|>i{N4E+cwjZ&f=3;0KU6r3|Mq7){>>qtMk+A*aBJ;wH%8%a_2KVtf%{+L z4|jeYZsOi_e8b$_QaJp3_;>r&n}eSfR)2W}r=A>ct{tvZG@757db1wJgO<-a+%<-I zNA(h!sVjvT)fJj4V1;Li89G|NIXe>h^)U^*Db_jr_ZL)r#~pW51F3wd(xnV^VYLC_C`BxK@e*S+ zb^PhYP+zY>(16>->OsStO+mO76uh54rSn~?Et$^;Awa!^D@%IZ#s&tR@-HnJ-OV3r z#=H38YC1fKC#D^eTD(8?A)wioLFLHL&rLO~1@{Wi@q-7SPaHrLk}!zm<~Pu9-|=A0 zmBKs+Zq6Nr6Z0-GIw@4D=oyEKW5O8)WUdCC@7(N?G%gek-eL_H)4aqLHuRr`_-cb@S8eL^m z9g@6eF`6Tgw3foCtDso?);v)Qn8D8_R6XNGcMSy!rT1B&@R>MZ1vkM_Rxa|uBqVik51<}mJ~L$?%SsPvT# zEM#3cIBTedZ*Ul)$~Vx>OeeOg1&1KU zU7>gDfwwSorg(ID|M>iIMnJaVS^izpD4s>M06-=76h?iVwKa0`V`^9W0; zge#}a_q|HU-bEQekWw5_Ind0O)1VQ}ppKLb;j{o=Xoz06e$`SE;tr$(*U6hSSmJ@5 zj850_C&!okucvH;m$5!Ou0GU8`_WzU(cnid#!DaT3u8no%96tanNuZ;qIL-ayb37$lM-VHvH>f60;e4;d1Zvi~nC&})%9Xs%rmq9AJ z*7O~BFt?kFu04XSCfxU%I8ah#`K#d2e$X5kDjWaFB%1v=F#75~o$J zQ8G16w;e)hE!`7wA-lfaJd-`rrJsLLBfY3OQ4RR*h@;}njJWCh9@FVP$k>iU>u(3{!#Yvvd0n{=*<^}z}^YD$^WOnb; z^Cu=}+WUw_?xojTk2hKObR8W<%-;+BG=xr-0hvOhbe;L7U5B_>;L{sz;fT`&DiWTQ zOsq8eFDG}SZ{6gBQ0&?EUjj#(**6g6T?)Zl)-w-9rXJa z9P-re2&SFGp+44nXDJePoz+|k(lL>2I`mr2h0e&MQKr z2p`b)_%OI+Yk8TF@Rl4`Z!7+GC1L$YAIGrcJ@T!_?-UNqOR5Jucum z|88XEgqnljmKXG(@}||`B_2L{N_jY(%9u?8&&5fv-Nf^(q-XOHpOT2ZJ@4lPwE4XQ zAnb#|q$ajgof|G7%R>)^ZSHjSRXHzp_Ezl!y^Y55|2IOJT!#p zB6(u}cV`PGq-b`Jo6%C#B~0UAXO%UHNcaf8=KU1@jh#(yzS=qelc%237q4-3K1;vr zNcXRWB-d5%7y>Y%+Cc`(+LLstEaz^tHqKR`HiksYv2($Q9rI1#H^*xc3N~Nr=vu{| zzA~ot!ejd}h_If)|9RJNdb`1Ryu(7T@6XOSZ-qUl43%H+&N zcKA}^`NzTY50+@B8|x9PahA5BcxDm2t<4Vf+JEkkRTvkv?+G)&t#d?NvDPZC5;nj3 zI8fcX0KGN4{AjfoU5e5hYCrD<9ZGydfNtGT?(GSL$Htu#Av;ZsjA$4DbYxa%=)f1> zi*=n~Vjinbm^&5GE#K+Vl8YK=|6MGXTv{sS39z$3NY?Jq(X5*`pe#$pbX1Ai7PAS` zA@wJdJF3JjPN&?7cH^gsqDxDwqx4>$c2F3e>2l7AoDbPzt&EM!6xtMmsWEPY@7Xdb z12ZZe?hpY(J_V-7q(A_)0`sq)|>GU^wwk0o7!p}+mUVXN!d}1IKTQf0$+!9 z__lat>|-4;H@)xKjQq;{T3SbzNkU#I+FCZ?Kj7e*aOM%g=6-t$#-)55lm|5^4{A^z z9ywcY`LndNVxa{6aEJYR#a(K0nbPrOZc<$rf4TCVMvUZF=4gZ71q3_5RlJHux1bAw*Nfar$*QrK@0NFj~uU_CZ}^FB9!v&JL{jRarfqI~`aqk&m*oBweNkZ0%qW&yziQd%&|PUnukJ ziBhhFhVpo? zmjkM60X{@Mn=EDV=QPG1R(QkG(;8X6TT)+qe`Z~blMeGqm1C#tLC!t~F3A!q(U#9= za2__83K|tCt{IZpDXZDF*C}}1bH1V*%6nW~2lOiDsPjl^5-&sTohLNlVA8KW5-Lff z!L^iJ9-x2d8O-$cQn>NgVRz>(ikjtkZXB5j+;L+lN_6hld=VP9gpn z7h&s~_ry{Wv#hCWp^SL!IvA*Y(it{%-SeEaguVgd&GFJxqY`o+d12(kVRo!+AwS~o zrKdC5(1N)j4gZcp8m*Aj1WCrR2a1|BH`TJPhtfmiP#tzvz_(#P2hq7b z6ow>@bNKayEwA?+RWvJLKx*ql#)rmo5NA|H$myKX7OVU+rOd#=e_}OJggHX7grX>+ zev1X;lyPyKII~0|v?0I=Tdz~DfGwDYW3cM&xY~m%T|vHpcih12G<+GaI@|eyUBU(_ zwNIVT+QdASGu+-uQiXMgwfQupC)cMy>(Hgny0))A%B)*# z0^)KBm*XGNtwPQ2@g+6Lal$AVSLNhDcWS3aUi@(!wFb`>&QZP;jaZhQMRY^JpiwNP zwYCJ?yB7I~oH(Lx2glS2a-w>98Q0x$=JA=jH(}lV<_R_`My{_+-vQ)dGomT%EN=w0 z=_Fes0%MNGn%vu^HItv^D{qiXK!|(yZrDNR-}bMhmyO~k**Lj~zbjc(*Wr+?WSn!pi+oi&sTBRKRu8WRar#DgT0 zuN)ekz^8P05pSpw_FJP9DYJms(@yPlgwc|D z+yrFjlR_7-AC*XETjGQE=#xi#R2B^~+1e5Gn!*o48M4HhQg->W8|2#HSG#iCz!1`N z;fqRn9mEi6M@l4qm4Q01mWw=3BD>)ck6l;w{?_PWt^WPp0)-F;1BdfRiv}>d<}wBv zpMI>Lqz9py6e=sd*}M*4yKKkReXq&=Ca?>pfcf0`^0wrTul&GK6Z&)6(gqhUDp>D>!YR>`=cil$J(+EM@h|VfC73dM zkSWv7#K{Y7^Pcc}ClEC0Z^9T~k!iqI*M~|tN?rpP-iW%Dd$l0nZFTSp6*J98%+2+N zM^_c22d}h5o>SO(H}IHmL1?zjr+tee^K6pCdDC$WTMCUrC?m`+Z1R2yFuR<(!h;O6 zc8yBWx+NB3r_Yx&Cro=zo2DW2tR2{EeP)*1S?K&%8(!pOdcHG5>n9)>hv_Yqgg@O8 z7oL_hPSnrlWGG&SJVisfm9iWk-BS#-rlD{K9=pvuk{6wRF#9oN@c0>L`KuTF*Nv*6 zNHAf|DX%4L+AM!|Jn*JD@D{c1TqU}KtkxVIC`{3)X9Nzx#W3cSi#Lbzo{VdsftNtI zpycF!95ut|O3%kvAnK{iZ+u14$DUZDh_0YvD=+W&sRH2OpEBO3?VN2kfzh>(E{w;pRkx)F(2c??aHy+-QI)}IHz4EQ7%GD<){F}d~bQ_4OFPF}~uVq^biN2oi#^_>X& zXcDVJiWOJ^(IglTHc=J#|JEp6AE}c?V1bew97vaGkBW!lz#8j?h);__an`R}h!Wr9 zi*Hc)300lC*y$v+=LQHrPmNjJMnP1gkf=6N0@#4DBHxvlGJlX)oZ6f}UB4W9@WBpS zGoe1&Ic^}bs0~P{_;i8PLSa=r0SeXR`615=bzz&epO6g~t9GxP#%yVZFSbFU4=w~y zC@9-Vq@^xUT@AjOCe4jE67uINQJdw^@%M57`og2~g*d%yuW^pLJR(*TqdlxSMNS!g zwuyR$66abfc|eol(WuAj`m3M7(f|L&48IUDgPDxnsIGqER8jj{!afFx**+TE@F{2V z$)&}*G&OXDv}&aTHlx13aJcRFt{uX?Hcsj+d&*40>uF++`CxlE-IFIL1 zmu(mVMGm)Y{L308iAR|Tm z?_a0K?2`l|{20hFLj@zBPYwlf?ON2=`Xx%HaL33|+CgfG5RELMsLFN4)f%tw(!w_j zW99g_e_fcBZes_*8>wpzIbs*wWeBDi`?PT6eNyEiB~)v!e+Jp#OPR^11C))^$e}m@ zah&oq^T`N?r>EW#ouOTlo_S&Av%-JUD8gJEp^x7KeHGg~-mb|n#5XnE7(F9p*L+4| z^Lo0MpZ@tJa8Htc*M8?6B&OYckkdT%V}=UQ>Z}*)c7MUKVs`;5!yCtghcpKdMZG%? zf~BA`NXF;sk!#djo3e782zQ0{^))H=tE2W8+c$3#vxY_~W>HKgh_Qcs+&iFsf=w*;sS#%gqKCqw}2~%D?qr!u0|4E+zN>s+z?uOgv z7h_JEaxS^i4Z1VAdh=r8D$>knM$AydjMU*zWXth4E%VKBbpgMpB2jM+{;YQ0SMcAT zGJEq!{pX>6W2MU3$8*;kqC4)otXJEeMV@41BkmNrs(j)Z*~Wmf(#kFgBfw`&9cQG=&p%4LiKr)uIOD$bRpf~+)-fnHi;>Dy5@7=-BSfCi+>FLd z_ncB>?@HCml_4TV$fzNag+knrH15%;^)unhR7~0C{m@5cL|%elKOIkSCnS84V(h-jFy|A2w;bdM@}sUp)O9+E6ESAkR%#CAeT+rzoRT3f$q0JrAS zQQ6c*h4U}&O%~!&R$){f31OQ*{sfP=>r19m66f4>c@7&s&g-~{I&bpTYd)H6(L%GF zKEOs{N?38}k1#_G_C>TSKr~%y9am*LGy2Ys$%i^3ibL)|fg&BL@fu`}^Q}MP#zTEJ zAWxPkouuoJxUJp{x1{6_oNt}1+ceEyEGm~BRMy`$c$2MmNNw%5oyD!>b4WkMoSrM% zCVIh@>1iElhGI0KQD~>`@U8fy*;Lc9k}4)ZRiiQmlqIUm_rz9{@DE3)h9_=C;*lO+ z&fPlF8yOSYs23at{GGY7)oM5f!RIr?1#JBfWSrbX+C5ecNHCitidhdywKjeeO>o>4 z5!@$ILQhC=+{K`RF>jl}#WEOUQ!DoD7-zxni3Fbs#eXIqWZdw8Fz|p{j!B@IG3f}c zm4epwl;pOQVE4;p6?hF`qZ2;3q;#im;MhZ<{d}y{Y?(x4LqN~vrTmBoieglku*Xwq zUj+J%#S33TgT3uO94dCKE*Qw1FJX%$%yC4~d)X>q8yQL(oj-ge9bS*${^CkKBo<5$ zBzjE*4;BMr@&&ZajgRbKlA4YGB(`6>TjOJ{{3*iW1s}2b@Ykd}y~>Qn-Pe}v@D3FY zUzUjG34CY+9q_)!yQk`K?|v@DL4_%W-a|Y0HOuvl-k8dv!k0d>bw16v=wJQF)ztZA zDlHdk!>u?0KCmIY^Qk#9Elw4ei0MQ)KGrd4GTwi5Z7H{2WUklY0cnBH_t|$U3w2|| zBzjEm#nJS440QgGYf^#&aNC6|YC28ngSa9+n6gSwBw(5JeA|HrngleCP+rjXlsH`g z8b<~I7>6!^YVP=*t-sHD?)cNK@O)jL8f(gujOs?uCv>qn-Nd!X+*8d_L>c9V1Ag9h5lTu%41J?9ZN(3E+i^&k13tIHj;;RpHn-rDGq& z-^3qgPo55C`BY)zfC}$^Lt#`*<)RVm{YMFX7St)J&cX+I12D4wMMhSSvrcC~u~iO; zddO9nSR*x2XH`$4>-f*&(yx%dt&5;-it6naW7CaEe4y-e{hd>j>>t|RljRU~zdg(k zP~Y$mQ@qS6>|_@wlw~cRV~K%$MOsfD>lSBeDU@w#AFB<#388S61NA{5In{z;6&h@% zq6k~vIMR$`vmB4%ys>S(NzrlJ``~oW;Z#`&M5NebUP@^8_d)k#*8ATnCr2ZG{4iKV8@c5nK)R?Bto_jjpxD_x48ekagWylh5nI}fhfKfn$BSPkZnac8ZJ^3mAh zAM{?IY-rRwTl>p8>dzNW2p|0CYo+~wL}lIpB(zTi8U^y)Jjk zQ>*B5eVL{WJ_|WN)S}|Q$fd*LC@$W+sLJt6dL(iY9S?JNE(t6U52N5r*BLW7_uB|>0z!}jBVu>F9bQ#87RD2IRy9!+aV(7O@9UWr)!!$tUWEFUH3m72ZwZ zp;Oiv#T>ebZjRK`-VwT#r@bMlacRY9p-ri!jdnlzNh20{7kXi|z@MEzNuY)rEC6;P zrMq-*m#NO@S?|ql=`%T0w-_gARMhQt|J3?X=m&fFjO|}=`fB^|mtwM-4^@fIHJTWt z4Sj+0n8wJp(*;{Dd^>SU_l}unizIWXCG0*%)R*_X7WcfOc#d)XU9cdNC>pt9ph}7m z0N&Ege85{>rEO2xuDPr)z?Ql7Cg5Q8NhBY{_{D?&laHLJ$ULf@8SjUS!9t8Xqx*iksU%S@WN zZWF?87Tp2N=mId~8BXhI*%y*?CzhaO^gziNa0sFBc$zW$y6$pJCo$(i3c-xKk#g_+W9Cd7Nj}=j^W^$N?y9EdIH=knDkz`?8#?ySP~;Rh8Pu*9tM<5rugTKZ;hnX6J})mhZ~ZX~duT_rk@5F0`HHGoy_n~_jYsTcKaJ88 zNr*18Dl#1-5Bc+}X0KfMd3RIO?$&&z>S@I+XHSpXy+wIHO-s|on^^lX_eT5{M4+ST zBMCWrQ+0^{mdmu4kJZsB_h8hW2Ju^e z=z85xtz?MUQ*+AsZ>X+TmAvoEfW%Yb83$BKcP{|yN>R-L+^cl|%~H;Xux(^Tp!dZM zv35WL8~Oi4mqzA#eiywIpRn^&IZ7Y`asm~j9{lPzl$D!Ru~3wS)uf_`?;H9tr<-VT zGH^ms8}vPD^o2|`K{OX}OY=L=eHq*;-eQ_R0q^P2=m4&2YfFX2wILWjpJH6rxqph= zHjG2NXio0J*v>516PNK0Uo>|-OS?mo19w+vRf(`R-N0aHMs&4>u2A-5@0hE&1Mf(J z=GS`?i6id?z~Cn;G+xv8PO&);e`4CT4<5JZ5kVJXQS=qDD0=K@pi5fDcC!n&FRT%m zqQmW!Yh8FZZ0+qzB(vu1oDSPU>~i+6p5?PkM)EGU3ZB9WmiM-UTUnAEG5pSXPk(b{ zYE)N?QA}SJyKv4jqf!lQ0$!vnNAOF&_I$q$j!O+n;16(agh?03GF25y47f0>{%x6j zUh<#=HNg=}u|zW=zKV|b^>g2%XpJ2?T>qvEl??m-p<54md^+mlhV7W5(7GH)qNP=_ z^nR~8Fx*dR^Kih8L_e6J%aU%w?sCOTe?`V!raJ~&q-|_k{@7opwA#$F(|w=WGz@v7 zX`a4FQ=i?|c`Keu-$gN9?DxIfpRx$on8m*+&aJHUk&Kt&u~Eyu|a$*kp}#ZM^ELUcjSpm<+HOo>C87?a(7%mV$Ch3KTi zAAo5|3jGV~4~FqG2{d$MrAL1SuGx%E9WG%I(6J0blC^WO*4P*~Ad%qL$Dk?(fqE<`z^L>9X3DDD6AH zZYfXRYS~GOlC`;8JZb-}`ENF_D9S76$H2CK>0idMhH-WNTt7ntZNGS(B3EF)`3vxE z+z%aeK=W_xf&FM=)VZo1?9hyg80=Jty$P(a>%a$zjBx3(z_wHxpHQi0j7%!MI-hi;2W@uh(Rgl zqAQRPK@R^r{Lfz~S9_PE&7ngvhYqEov2$p|b^AB1A#^AMj^uT#_312R!eOWJ9ugSf zVh%1lTy^3gy>xVDi9scc%o;4w@0;k(&eP;6cTU|g#) z!x)(ME)JqC{~39gX6b>uzY5y5Sqa&zm?2!xY?lRluJTQka z_yf%x=LP=yKapn+*J%ye@6!T{58?yQKty4w-dY9cVPZT9W%O(6WT(TR-ohOkTZ~=f z5o-J>_Ja6A`PIi@j@`zh`Wa>MMx^OzcYlQ;Bh_1U3m>B?9nR}du*hc)flc8Tr{&Kl z=A;|k6({Yg$Q0xj#}+=YX{vA z7}_AdeH#36Qi!3=Hju>pZEc{s_PZFr;Iffd7R-_Ib~C=-?esaX|BKh-qgyqivEM(sUGf>ATpt0cjDV zipB(ahrY+(O~B4xkE@Q?97W!n_Ub^s*AgWvI?nqYPuvZ7Ty#4=(3Y6&>?#itLTE{EehL*oa2l%1yD*U5iHRp_rX{XUHpQr6Satgp2E zcP>Qz(dOJfbpZ|sqbF?1qg!LepNS%T+IZtcF-s|$a6ZU~j&mt~HCR30S{-svU2QeQ zV28&rpuUSl8pP9VA(qYe(tTtboyYLx>m%`U=MohZpK%*``h2_G^4Jb9B$rbF(bg@UW->H^I8e>8dr=4vA?$#JRtY$+N`IS zfeX=C$jWk|N4m5Bh5R#qY=8O%QaiNhqi!Cx{7F3Ky7M~{6Ec8}<#Kwd6KJ6L2ey8s(3eEczx3haMrtnL3H z^2l`2(Ox4VFH1B&pC^Bzj!1&7#E;DB9d_a9C>92m#NSsJ?L*JmJzrg)fr?NA6@f`@ zHrx#lRypZMG6*N%R%V(O>F^Hs(P41rdUoTc|LLoURp`v?Gc9V1Z5r+F8c0?d#i4b5}) ztva{G;j|Gx4%E$@%}QVS)}!R zquw#sjSFz0lsi~Xc+I_?DQ&cU8wNONPGRv8O7M2bevyIhVZ*%V0@y^9v)vyM@JSFkc$C+?MVQ&JY zPI|)ksx?c)v)yR;&yylSE8DpYS-EcCEC*&j@L=Ig_q84UvA93_c4XM zLNS6g_OrVsw^J2!pkn5A>tQ=0r5a3t+^ZQ^i&b>2}kU)cP@Mv)jpr?uB#&3m&dm=?Mh52FwIas>A-l$ApB3 z|FaF9E1v&keuN;av}zB>PSFutObo^wdlkK+Q6jKS#*OX|pD;w5tI2pdD#&pj(IryF zbr*Yp+vTr3w2wbrE0i9t1$pE2-Wfp868uNcI=OvBE89|hNGJs$*^FbI=(a|#4Cos; z$LIvI?XIt-(b=*}hbNyNrRBZ+-1AW3ompi7)N z$8OKaTot?!yRiDcfra9v9Nsr!#|rc;FAPwZN`LwP^#UMc zX{*tJJ!{%wQSJly=#8$tjqpy6cS;}NKs7n_ooZ;A8)S|8tQ7{-5X%qCit`}LPLjPK1Y7# z^^I<@iwyeJVdx>LbJ^d3VmmvLSvzi%QEWpj@@aw7o?^193{^k2{|W~>f!IsC_cRGR|I{l8FLrU0KfVkih^sOsJTlf zmI~(oJeVnz1O|)>WJ(o22xdHuk_~@`tGlsN^w+>BiM8kCd-1<{_37#FHY0Ez^ieP3 zHK2^^@NgsDzB|u9(2I{q?Vl(WK<+3H&jVjyefGGLq`x6sZ^+}(+v1AC`vVZI z_Cq;OW~<|wume}_yP|x#^WU*R^gn8?aoI1-qIjgPB}sn!@?xDDJ@fcfXaYJR7tV0x zVszg?RQpxf1H6PvOu=jO|9Z78Ag7n#wbdHFA7GL{!la}7b_}VKq4q5PR@^0fK+L?s zu^<=pOFCENYDXT9Q6CprD&VrtXfqk=o;iSc(zbSiaEd8&TMg@7R2)GtAU!lF)bxQp$M~meqky31C{C}C(Bqy$Y*-N5QsI;eumZu#oW;kR zoEN^(y4g;^uLveQmhoGypQ~{W?G8<{T0H65WNrXc0LMl5g*7q#{kC;Tt|(O>r_Jm= z9(XX?0ET+AvU;u0D)}~)UvB}h`N>dJUOX}9-too^{KykEF&NvNp;V?Rb$*Zwe0>`?q)cBaIs%VF0u66~ z>&$xT-n7-Bb{aQfd4p6FZs**dTaJcu$HLp=8OfqsE_-$7wlh3Q2y z$63a|5J!`UojV3SpNF}VBkcM+hlV)eRCk?`y&F#=6RWB6WiuGQU<=Nuuts;)bN$@2 zvTnhR_T$M{nF&~c=HL@y^83(!yXR<3PpcruIgVVD@KGgTA0N8RDR6K{eWXf)VSP0b=c8rM$=Vkd8Y{t#OX8iJ*qikSm^~tCPY^O=T@Qu<;!Mz}y-kYNJ zHIQFui9)_E#H70-djijRDV%}RQaVxn(eZ>-YHF6Q%^7;|UOh%T{{88QZ$U&GE24P{ zV_?2<71~zVtpf=JD~5b+;MR2fhm3 ze_ynrh2`JqzNFu>a?nsNt_r7K7MyxYa_e%EiSLl~VdNS{rC_+c3~m+g`0HK9PwIh{ za2jGIjM(%?VRY+!{h@5<;dW))Lb=u?b2K?4*uCR%9AGG{{^?-Qy-hp1J}1_ z%7#L|<#TinjTM4SgjS@rlkO~6A#+n&v)(8B$&stl%fqpXIv_he_I$2V?=8_QxIc5b zU+z9v<(=AG=IjSFs^6w`nF<6eznO%nL1-e$*4JTThD^q4IA~{<-<_%dJK#pK?bj0#WmZ&l%;NzT)pQ8c1)bHy zO~o&3r*hOD9FYM4&&eW@x%;FUP_$%P_M}xkL5wDvim3pKRs}$tX0ICdWU4GtZqZ#2 z%w(v_>xYIrl@idRcw=NZ zaR=TN8U*dO@+$pOq#wj>gLYf1OzMUKv_nd#zaf+eKW@CZH2R1S4a1ni`zY4uTO(CC|Cxm7=e=YW--VoX@GnZPvCF1GZ6Y@Swf$TnvPl~ z(k`{Oo%|s2BGWY7~ zl+#0~kKQ_vi+rYiv$&~wSsx9t2#T&tUM#B<=6%|dHyy>LVd7{|`%QiC(*0-ii4O`g zH?-V0VtN99D|RO9pEwb{790&@hVm-ONjMReV-;25M7%0xPe!wX*tG|Ha9jwE_I-2qb>TSioUGd*K78k(rYRurc-{(G z5hKWlK2^*t_f{kunfs^MTt~P}#qb5GHX26j7Flqg{#izrGQHRSR8I(Srx@`v{?=oS ztGzK$_KIf0W_}FLJe|SO>cBkqkVBI6EvP@ZTdFS}nA<8ulf~I^I~fqiM1cscG)a>OhQ|6Hk=g4n1qI-klC~a-{B-i3@w?#)&586qcP{?J>H9%_GLJ2F^!YXi$kA zaHPN|G%rh-V(b8L|6^?{J(2fsNxI6F0!vb&Cd4ZTS(1k2BF%&-G!qxH`7`Px1-VP} zbe^zW&$!(&y6LJo%bayFm8RKe(_ViG&(5v>fXK&x!_MhKBJ+pTznq(_+dkmoxbm#e z5n72W!0-mz^|@!x*4rNchpqPvigF9OM#&&K=bRA%L6S($5(m%&D%k`G2na~d8A(PY zCz(M}KuHn=1O!xqWI+&zI7G=AZqN9>-@SF~`(xEPHC3DaJp1Y0y?XUpR*foA|5Ay3 zSM7~w&q{yy-#>d^JKz|Ua{87wXxoGP+k{@JrCNAA5xzzC0K99qGpK1<4^A5N%7Ug8 zwekwN8-IR|$AXc3S+#H8OSKOtEYcf$#{2wDR5411VnnLN+Ay74yFRT-rA36KPpo_#^ z_;N@%d3r+awNg*}T+!S;Ghe?auIx{V&E%vsH{iu_8Z%>LZ!tU^-%0zj`31|C%1klF zMLBt>C>FhMGGv<6gT+B+?L;{)86V#Xr!<=^#0{Rg>-+RW z|Hon7K9Yns>`Ok8zMO~S#yR5Q%_0{UK74dEgDIs3fp%-W*651tz>L9vB@QWiJ!ev* z>3NkLspDOEvas31bO-o*K>X1FLl7L;4jB*@Blh?=0s?L>^;kETtB65wYp0{XE!Zli zZAd6Thz8s%v+_0Wfm^qDN`wFpDwiosmdUN$FFW8pVByY_jr*rp3>FDi% zr`N&O(HxMj)OU@l;d4B#D;d!xjxXAs>^m7G@r$2VeFB;_1B0#p62DXK3=Cs4pVZpt z+`3qnC}n0Nl3TmKhfRnd*q;5V4;*h@Y=N=sh~-L=YT41(U(tUq-S+OH?=1q~O z@aK8YnZY~-qj@D8)l`#@uOholO@$yb_|qKS4!n9+xN$Dpt9=Nj!)(`7)uGM^=r;WS zJB;qeh5>i;nXN#U+ra4obpRD*NlC%7N#2CX0EIZMt4|PGX1tl*pZE-rNH1-Vo}X3u zd4JaE4c-!u-`*fgM0V#Nr+S?2b+T{j>YRkJPSAGQ-;d1b_gof|@%`hKk zuh8;|ZaKCH9inyi%i-DP)vNXDw61u~`FNLb`Imls$V*?tvzlvW4s>jejl)I!+aZ0v zt|Et0W`txZSsdzLQpc*ZaZM4rl3Glt4N-PT$`xp!6W;qRjq6otpM|nB+r7xqFshcG zkLGgwam*E5KQjW`&&1v6FNz!$y@#_3$QomnR)m=R+n$zxy0`-kvmrdM;AM&oS?C&^ zb8nP5U%bBe#D?3{1SeH$1#ih#z!7)+1pdcsyQ20tZQ^=J{>Y%@9eEc`UpyYc#En zxy#|2_*zMWUB^hk9!|qoZ$jpOI9_?}Z#+=DpnfA^l}riVNVvSD!BK6M0wu*?OcOra z8JKk_wNV9gY5mkMCO7j=OJ!XH`uT>I}O zz{&!P(b$aaazR;v#DZz2Ih2jgDM}aHCpyG%p$-XUg-@O5KlXd7#jpE{xYp5Z7uJGl z8ha;1SS*j+uE>HcxVWS-3kvfwHO&mAHPg4nv|r=HEPk=N4j%eMVWn!?hkzs;`#Y-k zK*a<$0j<6)IA2)l0;uuIKv83B?9~WYDJCIz;IZ&fNAjaQ#`CLL(tgPmk|x* zCc*yL*5VA)L!L71bL%k_I(*&T-e(Cl#n{&M%t_WK6U?aH4SXr7-!4$1jlH%a8|OS;dP&#P70+|dITs$YJ&B4e@A3AM8BkrPOz zqz=2qx}`!BYtP+3aI!%>L3~5zn@8QB1c@x)sDZ#;O3NUXhsjMvkUAJ&q+`GSvS;mZ zSteWLh#aZMPht#GxY7NCcVl#mqaB`Nq&vNPLesZm1E!+I`~4H@jHh{=Q~!$pT{68L zne2S1cv$fDF9$bJ#vFc;4{*!Am1;WLcw-v6zcqxsuNu7nrs?pW)$aYTYF?pFd)}KQ zzCwGjTOY}*O@78Oo7lx*{~8PUYrviGHiz*=X{sxzD7W5kSZs{KAWi2j;(fJW(1FTh~?pj^Us!V#5e{HYO%)qK|sYbNj-u9Jk zy{OI~faTT261Jynm26xCCbkZA%W};U0v{TSfz;(YZsTio-~&;|Y#?o_SX{DevKx0w zc$ta!pxpMR79fpJ`KvH==8|Za55`sLn!`&M7phD`n?HgwUMkwjw}g3Vy33q&^X%<0 zVli^~^a%CM&V6`_ArY(IiWNUzr!@ane@|a}0xaEL$M^Md2WI}p8k4CfeEW4RoimW8 zPA!j*`pvdy!UUuJ#=t~ITc=s^d`eC=YWQwK^cHCzbs9DaSi8ji8PlMyn*EO6L{Lio zpp`RFJnNYf)s%JxmJ;#L6RUSho18!8*W9%cy*ltTzQT~tXAnB*l?76iMi%$8-=U&C z*tt~5e8w(|B+%VFi2RJnzl3BMBJ5b7VK9@bdv$(6HXRy5GXwG&UIkWIllIFZk6Av+ z`shl(G9grgZ4F{{MR44u3re1A?=WCxz9cIuLa^Z0S3ezU>|#!llWvnZp1b3XsGZy< ztfv{6oTqaMOCh{A#rxDoj1&y4N& zqZwU6di6G_ZvBrWMvU0%gj{j@s(4HFc!;{zQzW)2fNyS}Fm2LdcCC?QhG!+@_4}=+ zLN%>s536mNV_Wtw%>gfmlY7NT{TCzd1#O3>HY`Qykd@k`qkpmxZ?`q5e`>BXFiQKi zO+1W6lkhAUu_4CcUx=Z!fEQ*2FAR%Zgav3R*-#Xxs~Db1rQ62vJ*D|FWMX7idUtuC zP(qD4__?9eVV^hppkjHm0ToTNv0Omkt15^R_@pBg1xrB}%&@#5{-N z+33tqpEnX1i)HAVCw+4~^Kj@ZFF%j5A~2Cmp6Sr77>Kzpse z)ikO?<=&1GDP*R3qS#Djho;+LY+69<{lz$1$AKhH4P-dqYk^@+p}8|1TU)Z2$dU*Xfi(v% zy6Hst=Egi$)s$Wf?39SGSDD>Y_B+ZqDw{<&6rh zHM2TGw$CzPeBoCo@HvY5d6F8l;W?g8l~1bJdCx%rXMC+=RB*epcmRkf0h2(n99F;!LaCM_$TEVMkQtGk5~Ob1u2j6 z%!8L?hFKfVHPu0#7M;ff`BG)3qJ3VSb72t4s2lVs7wybdnc!v->qJ%bL={$WJ zMz`uP+ex-+ZS;p6V6|cCSw)>Lb{bA85;*4eoZLqcEZNthFz#D&FMfUjM3(K)}$-!zVnr^z;OS~y4 z!%u^2ElcQcrXyVfJ0KsB{cPirAC_Fu3scs({-m;FXzRcJBo|$u8wjPh&^@_pmeWB! zL>F#RE=423KwT)8?6)=hwj>!fEVtmj-kd+M6&n@uUDXIzFvciGDxm{e`5QldZK#Bi z)88b30Bhk8;Pe05Dsg-}3as#uyaVukwDDT_vfq(t8Rg8LIA76gV=XYCqKyGa6RbR# zdL}wJ4>k^hC|@KYCNb&&e9?S;x zaN>NiijJX?*sYXFBm<|`)-qC{_zVot*rwTneeUjg(#9QhoGWX^x-;7g+xS~#NV#Oz zF(gJWx=AA^SP|V7OElEF>w%?6`0xCQ1B%2f8`y1N14A+{FoeejgbDPsh5r#vwcv#J zu|fGdHq1+FgA=Zd?eivzuT%npcN`Wr@J#+xlFC=6Q>3td=%=WfrFuY~ydr5dOIT*3 zBATVEL^T)I&)w|$iy5Kvonpq&bR-^L4X3okgKH|^4TZ*$5ExXkfnojnrAgyUlUkh8 zWPe|oX!#l6KgTk*PMb_NhJ=?i5XF#O+mjct&`y`OtGHs;7d@z|vQ~NQ?Vd}Lp4d*O z(C<8<#EOO){hGhJJ%aRPx1@4Cz*4nmDO~&+RJK;^O8yLX0zxcWB_u)^xf`aG_f(i{pxPba!-;#S_jB_9w*Tw_zayFHv z6A4|yxX2WBTy;eNd3#jyye8%eQ-Vkm6x-zbBcrp#sZM5 z1mbIROS|1-r{-+xcc$Q_)_!#3gcb|&DYJT3F=^ZK-@K^%B?5!8-vjpkYT-ad8XTy2 zgd4%&LC0!^^DIiJglZ8GRa6aa#CC$5y4;aN#$WNQoNWyYjaO-F3tP;$$V~4$v=&m8 zo#rKD+&+;PZ!#7btN|&@T{MFP^t6Bl|CVQCW3K?CB;D2$%Ln;;F>sRY5MRApY5!Fs zF^Y_={NMoe7PCoR@Pg(O;pPI3NhZwF(4_HQ$+S z&5qd}e-4Xr#cm6~_5r~`LxpoJhbD!W1zNt?{l~-|Vc$e52!(zGv=@I~6B{MdhqWRm z!f=|T)Y^lDyqUyGZWbSP{AA#3#x+3HN)HN|wv@`ANIBSuq$}<K3?CmU-{8JD_eO!d3u8)h95}UCF<+MlR2q0-tsRmj_$*9mt6{tGjv`I8)H1i-6@hhi!ND9HTm6gc*VFXozBIaJ=xujIZ}8%1 zn50$FUu1JGyaNKY&zPP#uDpEvb6{c@;V;Jcy@f=`#!aHdHvK+y(#dk(-R@Uj>;wB-H-^{r|72;{bgmw*k zu&W^A2)#zpR>bBr3A>?-HLl--FrY{WhSH)zAhMWDtV!nf&OLM*g*Tm` zde96y-q81kiY>QY0d}3OG}sUjB_$z~dFej$KSW8Ej!RzB>`!HklPF#l5x*qS=6sCV z`%I3;L|88$n(*+$eHFFeVpR3QdWP=i?KJIx%<4^(RM04Tuh`SrH5>)@PLe=jtuM2c z*#c0vAhB?b2>N8?a+)mu$3+MQ?}{^3hA5tb#A&WNR;o(Gc+z$%AN?XM5ml$oLb_Oj zhc7pCgjXNe(1Bldhb2Dtqe+mJZ(4F)wun;X)b`D4cg+VHK+GF|$M?|Xr{T0eyqp-% zE$K(NmvbJlrxth0n+&cm?A30uc3g^)W_N0-zOl@w)qK8~1#}D8x+$br^@&xlUZqHr zLm%1STDi^YuT6KYx5T0DgOL%m{H_fo4{bWtXzD!C(FE|}62d$v#inS)@+TqsCd&Yt zDb{;E;j66*p)5Gmf02~W_dVkiR?J~L~Vp@;6wG{uo^DKg+d*34Z9c@MJ zdg@I4JhxgBoj)430NO!3ZcP~hNk_)c^?^y_fk`dDG|^3t7TrhV?>><5-A$U(2`qJl z!xxdA-@tlJpk=2&u`^I#>b*lzx5!w7QlW%>P2)y5=e38vy8!SD4(=sJpwWSYj-%yM z5A9CTrlBXTFe2LV`)GgdbY3cC|J(0lOs3lDpQhuTal0c-&FS`d(`l^T(QnhH!*#pR zz10q>PsbI~s2a-fe1~b=v)XI;{p` zdL5ysCmrycZko`;eI(Dx?7Y;;Hdx#XORVC z{27FO7>3+)#H~xy@b!KdOIq;%_GCjCF7Cq+!iOV_2@7yQOn-^Ws#DRTj&Zo*QI zZdfD~5Hq97)??BE%_wIo@fg4BYdXen2bFo}ktL}pg-7HL;P0!vpX_VVcx&O=JQyQ) zbpSoyJO@WKnEhB0FER1Q;Gyy@2IM7q_)Pq(GZ*=^JjjjU5N(u#jq>N2zCiB=Jejrw z_^+HT|BvXD9|1mQ+|t6z zwwl>_EcGfD!0t`Ay*pMJpuF-b#*TnY9tIj{d@nW1=2(_56)}ovi(OC8%6=A+BnrK1 zvC$-R*N7GR<=CfaZ#^+xLZQ*Ri~MBr1&k}cL)f)^HN+&B@V3}B5>Q$+7gGqAlpR<5 zC{oe;lE%tjl%+K(5(`xm*=M@(g-~gx^}adjFJK+$ePIpYaY$_{4yh&iAEZ{_vo4ac zFdUNaY;GCt=r$MLc97KnD_s&NGlQi2Lb?>!Oglmc)>zS>8qN(=r)3~hZwF8zo3rj0 z#|kISu=6L>r3iNV+_@MW%;UqK@Px(;@?>iPZHW0_K|$i*>`Z~;1Yg1r^>1=05rPe> zE+6O|JNU$lzWYYazQx-!5=o*WRnWP_w#j?Xsjq(Y82VD3kx`o-cc0l)Khrr6UwI!A z{|fVOEk?}tRr!!T+V)C69RayAlxv?>oMWYH63^T9>Ed;PJTn^Fc1-k@Y@RY~Opg4D zzE|{_Ru0rKi_hCe! zoKEjD!@xypr3pGM*xn&(Nt;20Cj&;E;-JaP=<-0?+q?;arn_daz#z?!HVifHU})U_ z5i5+1&x6Dn`r{bn{kax~F6i2`Eo9e@a`wk4mmd1v`y@`<( zWY9w(uwy49mTZW_9t)#HOA;_+g#_e@Vd>DAJhJhO@z7GYejBs(EF9U*+*kI}{4p8Ap_I?42VW|?b zY1PQ#(>>&OV5j92#ZfwFcgKhosO}(D?;nfu_~{G|TByAKt43CpVjQLV!;@HeGmUcJ z!sa~;SiV9WjzShmF6YSLf2^$yys-ayd|(5P{jQV>s;dBY;9qnZh3t{l%tF3p)s(7H z&x2p4P19|vjepyL&x`w|n9ggVcg!Ig57g=8lr+-h^Q$$p{}|h8+lau#lc>&#TdL;2 z4`~oSB%JOB-z!$lux~3Sh2hLDHwGpd=x&WnkvOwj;_XZSX+Q1CcPULz}6C2QgUu*`;p+wq5^x7FJOZD$zI`l z#hGfua-RN#O|G|a^z6qoU@)i~7aM#v#DStPTJ5r|vH-1W#rMN{VmsDmg13Ii1A*mQ zIr8@M+~#o!XbahET{qi(Zo#0>-YY)p)1UBR%?O)v{NLAjYHylXyHLo4?W`?F{8#j$ ztodgRU^EVdYo1XyQwiR>{(6UdKGXXzLGJi_%Xh9S#Q24;KW+hm#oCjgy&b^MEBe{B z=;c->NCs?p8w%dnI67AnXZy%``K89tM08}$pkYX`oN5Y1{ zwOmOClPqupVzF81pbiLcKpCx$Q`8BZ`q!)O66<$(Uww^+FW9MGxY9ro|FNF8`$(I> z=BEG(hlHJme_TL|!5h3WZ5@H>z?CW)P&L9beca;OLg#M(RJ)uVa;=&>b(qj=fRO%t z328d|=<}N%>2{|)ANHrr7aDzzF6uXq685UrZs|-q9d$Od7O2KByqp z;eN?5STyj|Bt`A^U(;|o>?qZdgPR7B@+nJk&}z%S5)YbEiOmpy{@7wXo|w7?1^bg?+|iR{ZI9m>_@DWTkqFSPEX&DrV=sFS-fUKh%q^{GKA2{hw&f1d?g)s6u-($Von} ze{ekg;VE9pB0Aiz-`$*tYujAv>@H&zdoX_B%t{vvu~7T&C_t2786jS4%n3j`G-e++ zXxP0Z5)F#V#wZ)j<5Xko)zLPmyl9+w*BKuUI{arc9OA|06z_J+Wba}Yqz!4+Ab zVPjdi3;jC3(q~g9)TiRp!+#-M(evfq#urWy!nlgbVZb>|Y$g?F5EVg1Sz*so$u~qlpSoXbU?#4d zCc|@Ygody)Xz#D~k&b1eh_F@}VkBNfQdJq2&`kP^<(pqqP_ED!&gl#YjuU}Y-%RR< z`k8H)b>K&PFY+utJi`e^$d;mD;Ypd(Qf!0pJ6#$G8!HtDShjcE1qd4j5H<=RY+%h9l@e@u_+d8w z1)8!;u8~+qE}$*VK=8+E`&0OmYHA7< zK~qkhH%cB{e>jH71^rQ=k!naJz-$`H4;;H3fyJU^HR*s|PW%6|%gx%hsdXTWh^wB} zf_R98#|Jbqovej0@qsz~>{!0a7uqv)7G%M$8o`ruW~zVtozDvFu-VG~bjHbB=vzyq z!AuBDcWR>-FR8*43`mN@PLPfy>APO0vFxAbORJrvi~pg%R3#w-SntR>AcsC0f+m@h z@@j2Eag$nI&QQZFDm%Uwer)@YFZ`}LW_Xeh;fM$bs_D3JWDg+xAcjQv9~64tvyqUYFuWf_#mIoq z9E`LRY~tNzaD07Na?@0qMWni87~5& zoJ_x`u_GayL!T}%z#!M6ESesmk^fcA;PHxI;(7sJt;r2Z5N(kJyez^`>4}rZnHMiJ zW?a>&*i=2fP+%vk=IAd!JZ$%xR<<9;lq_ilb~;ZIerK9h$unfn5m^@MZsvf-h0r@} z*AMu-<=Q9bq0{{wXL@qNX-f&(oCy+Xph4f72QV=0iGp^}1I4 zp+f@a*yVEXf3G>623>tV3%tvD?A!SFeuB^^SuwI={EM_|fhy5$ zwLa@G+uR_l8%8re|3*}gM}tzKWR7qF#^{ytMEE!yDPG?|1an=vPs8^QIyD-1PmBlX zRR14z%G>T~qsMVo06EnH2c5##-ve!O>ACrHC1i=)m2QD~W0M!EMJ2t&96>TzFzNbr z>FzMKpR@5Z5CiNFo&F~?-fxZbhK4Lr{h1w*%&_+L>F^Xkl9UtAJ8avfNOg{orN4rB zxlJ)cym6u~dV^lf>*w5Xk!&CLR&$=z;}hFhoecpsqWZ`GDSvW;43Wz<6SVsC45S*% z@mnOF+MNjo2&d3ya&j_JL%?O_TK1gKzD(M8PeoyUuS)X5F`EHhFoY+4u^jog={fU5 z7K%0be&F0Ta2V-uW?NzuIp- zPoIX(u?ehV=VcJbdS@FyaAoXueLTAP>FLCxY%`Ynp|oD<&A*l+h1V~f?YFmpwS#ij z7TE~b&tCO*9D!jGOK_oJ$;N(f+&^z{c73mazEC5-_gh}D$zlO1)r!Z9tAtT}M^kSfztnC$8)M|y zL0=CjaUH#(@~3iaX2E`o9)C54fO|cfip(cm$b9~hhK?thAK1~q)GiM=H^^?t`Oqwf zba8W!p;qb%mG53^TWl*)S8Id9Cwsk2eROzgo7&gz!~3c;=7n^RI}b&&G0B3yNxshB zAS)Hb2hseVtUmWaY8z}pR_Ve+jU)ZSyHiFGIx3B=3gw>aw|IE<<_2bOJo%toCVq83 zd^w-S0J{g3BetiohklR?j(4_%5dZ}LS}x-vwU93kNi8^=*EStfl7r14U=uVK-U#Um zkNw2QVE1t}Wu?odt~M}D_%iKmOcK#b}Gw(2C=OJKldH{ldhSm0W`Pd zAMxhyT~JR`t-RbjMk-qDCK=6+pAf{`|6w)Eako?@XZzY2QQO@{d~6C)C23q31U0V1 z;@0OTThst)hcC}`Uf^gNqEM&hJbW*j-7!BtOg{JInwzh%o~5!>_2lXC8RH&bXc733 zv)$S?*1&)N>9-HUo6N+ATXYExR%UpgZwM*h3rtg9@~a3Op7;>5TiR=&xn8$+wVZBM zH^&AuLfk?UqhEgi!$s7gx%ifK%wl}U zXn`Z_CKdc4bIecpatFoJ_2-NiD`|{C>NZ=~9^RKn>2&+M0UM;6cOAWva#J(BEUtT* z;QFPHoTlJ_^ug%Ym!V`c?Ryb)_im9147;ZD56=j$ecX(F{i!fwaU(|DQRRsVlD6hu zdeLVWKgZ@Wk}!U`Pt{^ywv@|kYtD$~096(%1d5-~&~09JDQ}dJ@1457P@Z21KHy!)E zMtWA2v$XsChUz|=*DWFeNpl4@)To;W8yZ}qKI_})i}4Xc`Gthzmgqjuuhq9F01@r9 zZi-Rl$xRART18#6nyEul`L=-UT-J;2w+k`W0}t-1oJ5(Ixna1K#ilF;-g)*l+Lajl z1mujAxieTP2RDO=_@XQUvp*8xHxCT@8KasR2m_M-e$hw~BMUgb z;GXt9^U;mNFF2nV4()Z*$>$e#tEuc@#-*;6n zXR56Y$DeiDSM;KKo+2>9Zq0eeRuY%%Jb$pz4v``1`j5oS zleI8f0*x(x7h)*Z?!Cq6WYic=ZeL(*HSKw~&FUyz%|xbrcFJ6!(=%P&W&Q3JfFGCh zcYY)~Z$fm~;=liaGTb|$f&$t`gmPCkq;eG8wvD79+aKhuN_UXdkh;z)3@<4^nI{Oz zjHG%N5hnMC{+@lDj}k{Q{XGNcovHZGkX|@a#{mJFP_K3I3r$V(s$z z?E|C|#ku|^1O9J{wA>^~Vh=uz8tw#iP3m>o3RU`rXkZ_ntiBilGxfHrF+4dGg^TBy zp5e>Fq3KRiE0yFR#yQdz>*W&$Hr9tXJ#liJYcS(dfMDvFw6i=x*GP3xa{+10p zpG=MC=ZG{GpElnkP(f7id7xf7lpc@1yWS{r$LzPqt~wQ^k-hKdTb1fJ2k&g_EvU7k6)Zp9hMy~ceUSXe178@*FEp`(2e$0 ztA`y2-4(?=223AV*8+#`b)H+4ysuG~mhXPOTgp|v%=yi8)HSp`j^Z z?ztU=@buBW;cZ|RqM3Zf^n%=5lN!7hT@idDj@(ici4B&&X^qW^FZ`cGBu%x4zW##p zsxU8?Xb`0lzBIb;$g(Us$`fHjEY(l5%w_wXWUOVlM8`Fbb6Iyv=VWTZUaI3=rscFw zc&eOyTZE0#cN6vcfuP>+3S_&2=TraYlxKx!65ckp`zq~9XWm7qRuhM&`wCmO; z6KKIG%|1%a8-x*56^MJTX?G|&4SOUA@+IACHTf(=%S^_omG9A1@AgbHI?XA;s zl`j1(GP-ZcM?CJB=yh6T|IoF90^rOy6Y zP{j*Riab^mk1~$<#)CwT?fdKxZn#V|T@KOgkzN%XeM5fjXr$E)zn9%Bv99unCM3ra zbz_FP^=y!4b|{rON}@)z2Aab2%(&}5;Rbd`HR%9eNM+mzI!`3Mq+1IQZ~VjLu(5(C zb&g!vp}H2WYg}|49*fwW;7fh)7L{N8@QU&!KepSDjz*ejxq4dK zE~=ID`Ib_+ra|w0!9IID5G8Vo4D#|VbvBtswaW1kMEGe>A+%i0dfU&?rRLgW&!5st z3-c@_mp5F^+<}CfEa98&i}9W+4tXR28=HHZQw|IIu+K1G=-G~t*uY+4do6S~e${Bi zU#E2`7hOhRsWdR@k$9y_&z$S@$`K!#k7w%&g6CVEll%G~R2U-C)Fy^_hH;Z*KSBLE zys&qBnnNJ}iQ4?HYXjOIPc4751XkIW4IiS0-=LW>q&qzlcd#)GNrt+3g^1p6Gz=l` zN*D9GrJx+4<-(w&DqB-aPxE2c(U})gn->Tv#@F0Kq5VWDWAG%i7hcCoyyxQ?3cTi% z_{-5M+7z`}ra@jc%RGB>Ii>DF;zZ$&-{4K58o!C%FVGkj8f0hVqb6aCK*L-&F741u z$q+_xP?EeovnVSQMJ>mn8=Dcq-Em}o)n?LzX~~UoU$NAr^~rnc?bh(IE095d%ZHRh zfTu9Ua;BX;d+segbycH2HIxusi>rvHOR!iOEcSXJ)#ZlUS!vZ0TJI?Yl0`mmfVhm6 zJ?(n7?geHuGr8-^!_JZ7G3+Wg47+J&LIN1q(p?(}8^^Ys`Gs2MofzV}`Y^gr{GV(r zv%T%C=Rc6`di!|8HMO0$ceh=#*Ct18=Hp`%&ZY%OI3}Dj)wN@)O&N}hGFuo1SoD-V ziP*F&MbBICmc1SoF73@QQBJ;T^&mUDn|DLxR=#b|vlH$+&!_LhoVr;1ka}crsbWcd-ns``?X4kKLiq&wrb50&y2fp_In{i;H&y zUtjgypsi9`jhGJVn+FAx|5IU0qXX8OZqP}5Zha>*$f;AnUH)PENWMZ0m7Byyh8~Qbu3>6zYDajNWS(fZk|#<}4k|e_U2*6)2`jmZov6a5G{@$JKcx zy)OQN*0}HD%=*lqtko7Z-f@iVf1v?J-Rl`&s|INCC7N5JcO2qqNXflo)mmvWAB{9^+=xAMo8V-chUv@Auy z>{{}cf2x#yZ(W_fqV`We=E5UsL;|<>m>!=hr>H*v$s^68dHIro987$JKh%cgX}e%; zj-;)J$-uhDn(%_)Ao#Eg(giaD_kl1!IYKk57lSxm;fZ2*i1R&vQNB$YL!ec3!Y%Lv z*f?!!*l)>lD)M|AqMqZ_D3r$U7Oy;&XB(9uU1*Fz|57HSD^GH|d>Nx_l)#3(Vauwb zBMVSTNI72<=yBeEw8*9h`zhC;m$tZ0pm*i;8kbibw!rc|ni{Vtu0DFMtDP8|w3*5` zywqUmyg>0RXu%+nc2{(HwYK9NN4V8XlEW1AV5jToxku@rnmLf}pv@S39`eI4B@iai z$`7O&=Osm)%qTsjxr^dGu(>2 zndGFsU=;}B_l}H<4&11?_4bPYWYK;n*JI9{msDk@d+Wpo-s#`{a>|6ujF~;RD&mfA zq$(v@L1~IHdB|K*KfwJk;PoxKvcpMlC3ew=0X6&36+y#%aA@PDY}LKznBd8wCb6P^ zC*$%Mb~eq28B{m3GK%@$ZS`_f-$}KDXc4RCB*+qGGj;iAc?SfGAP5$Q$gYO=@{XCC zbp92ZNdGrcYHm`G)wra5L+cI))=svrbn!z$v?zOP)Hl=gktujSW44YPK0*#`)#k}f zdMSZIg8Yk0Dj%~8m4M0MubaI}ZugM;T}DDAPDeqUzKNfRiPZCc=ABj*utU*J8I}qu z#tP1UwEV|1Z0(O#2V7kB_Mv3H;AR>81IpD)!}1ltIks0I6e*_p#I?jA+pT37ag#8W z@A*=MaZx3Ik}n?!7-C+^z7I!7^CDf_WN@`}l-GMKcKAV1uR{HM4ml9CT zH1wA!456iIW+@iatT)MueeVJwup=_+M;mE^H-xBS)g-iNuMyll8RB*Av$L2 za`~`Z;d0@5457gr1#rkX3=a#$+raQJS00L7(6i3r^<6iELK8X zdGo(B3S+i{3QD%i?%odze@`rYq}OR!4SaStjz32}lr{HCL7aSOy6tF~GK(m>4l^e2 zRrn*rzFk(PZNoY>Zbr8kpDmQ_LXT;WgL4LhN9n-L4&^Ng-evsmn1NzCfGkFrYCUD{ zo0kO(VvBD%emeits7nxj8dn33^GBWuqK|a=bqQBY#$^GD5g_b`gl~x~V`5cSE_wK> zC*-p=q=7-aTIWUsO!yt9WiK>8^8Q0ABW?00Iql1n-=W2~akah{qgiadm@+8l0)T1O zhT9xmQj9nNQ;#liw3TTGrA;?4#rO}vgfH|ncejzA5l@zGy=$xv-H!s`xpxR`FbMpi zUsQ?tHQhQq`%J+apZ4*+*Ll^NNvvADgS0xz5(%9gGZbN!@%%lXaBg*jWI8j1X_^ye zZIXkM`S1RBiTrARa5ON(LUNpo^g5i(D(v!#@LTP-#%X-MD7ggvY?b18UA$kRXKgw8 zhp<^?Z$53GF#Vr1c=@`bXvI-&M}RE~-5GSUf<@uU0c(>EVjSWjBd+`wH*4FcfL75f zL`r}?Q+`|@Eg3M92sLd|<2cS#kvEa%lk9Qtpc)1F)ueqCvUlXVw(@r60DhFT)l_*q zU%QfGyg79l3PdNgV%Q+Mw-4m(p5(hk36BZ$IBzBxxJ;V8ysqu!Sh<|P$o=|+?5br! z{3c5V#8mspL4Jbi=E1P7FC>ih_6+m!0e91Vjhyx!oE)6>zf;IWJ%HBE*&W(G&u_^u ze0Tj`Ok6iVBd5&I+qV#=8?4Evo4wo4a^S>pIV)HnHWn}l3P^6xxqbBL>-APPP~vH@ zv&(R|=V?gN<-0c*CPVI(OCgws=iZ!LICL|Gy_7pvm0UP2K`r@wsPYJ6e1H1r%*B%0 zD0E6x2P)z-@92VHn7zOU&vI9IgbGCc!kLN!@^pTK*y@l2=y2WU`Us`L#WR z*6GQ}MQezD^7?1*+%YVV&$E((lBxwj3=yW32ZVIA<-(;SkRCyM zwT5nr4u80)^Op*xPxCT~uv2XAc>UtA+k22>Gd5D&l-WqDG0;{0-j28uY`2`2!o9y2 z7j)%)JW)z0s1Q%;PTWw7dJUuE-gRv9(!n0=EaxL?NgWv+4Cq)Lvn3H)i(T3dDV}!b zvs|cSgsWpZ3oWZxs`*w${6f}qPa?7QJ>?UY?Z)&vV|mY=iuj|OsVB0)N;)l4oA}wb zY8rTidG**BKIBNdg76Kb-Zx=>Ekw}^+r5#)0ZiomZ0e7fZWP5b6JuCzkws@v6>1qD zrzc;e8e(@Xs%!Yeovwd%=%aNTiTYI9PrOcmI-g>p&I+hIED{n^{)4)s1?rAus5_Fe zb;r`GRnw(mL!q}&cbpxK`;SvE(;RY%XA`=m*dPz&9!f&nrymUDc%96w%3I_eT83-U z`V%j!t*^QX@WShJY>bVoIuq7Rh^Lf9GiaWG@i*zn_?`(30vl z_Nvlx{=l=R=nWm<-mF-Se}};F6q|D@*_bDMtNaNryJqDZFpl>Xv_hZpgqsIp3M?l* zo`pqy=ckdXiGZmI-qFrSUm~9M7MiDS5!<%7Ggw*&)ndOg`Oi%I_JAH(SLkV4r==QL zd+vW`!UEEn*P>#YE8Iyejd+6eG&RNIj3o+m96H7l#WxrV?WI~Oddd|&N)yczLwQQF zCzbn7$5Q2#@p%WyEQ>x8{f8>dw?vJ%F|quf(LRyW&)2O5ERAt7SsaJ73%#oi`U5~G zMO8afJ|8VGut}7c=q;^BCVB!j5+jaFKvyG-af@%3xdaiQYy^sPnlxTjAx;tIpebJgx z%6IAiF>{1*ek(n>zz2u%T^z|L2(^R6!TOrPOqNZQb7+wVo^naGLs$JYP;{YWQS6Qh z?5}AwkHP#Mpw6p@!lKY9LU8Z{aL{dzy8n&)&1%JBij|L0acz(Tc1v=dVg%&WXRyJE z+ebs}@sm3I6!vrE9k0XrlCR!vWqd=;!1$nwn=F`7;a7#r>*37Yk6wPa)XVv*6~kxH zz2!O(mm*eLnFr>WhK3pn-;=eKKguU7x|ulf!PkHI*(iD=S^`Tq;QhD&Kf<;Pq9x4l zQAIv09BNG?=%fuCCaz}Hog{IUt|6%4%G~SHAtUyV-WXac`E>piD&94wuO_o953)_D{%MA zPRl#H;jd%wEp189GoR!=n@ysuM8%h9KDe33$||h<#R0aZ~%SUy)Sa4G5Oba;M~Jj z#qP$v7%BM}gQ(z-as}CYgL=-S(fM`$2N#a7e589|nbQ!kJ;MV}Cg*tX&kFm=kJjGF z{kd_erjVl{k>4Rl$cK}GYkw3{J{@m7%vBAU&om7^+?($Gz27??D;45*GSl8YeYY&P z@nHMsN_|bPO6c}McXy%4{hX#C&&{&l&;v}D-NbF4-NP46s)5_+y9Zs3`!g4hE0seJ z=H?U>?3Df2Tf1wda+-cpH5`{cEK_?y!>#PMyK{*=*qb9nlzVpK=<3+$?lH~jh_hvM zVyHF?Pe-EGi(@N`heta5BL-92sCoZ0Svu=o;bI;ngZe$tfrTgCri zE!2M>{jnYddz3N7!GU=@_ymJCh3ZKJ_^4Kj->Rrq(hDd( zVwXXbyX}E;D*S&w)WyE=fIPcQn-QbU_EUzYpJapkRF;T`gnt6QHifHG#TrBg+|+K* zjBog*A&ju_i_hbh6h=I_$$)rZDU>(Na%S+vky!3~#p?0lLZ~z<^GTlX?n*=eRchX< zEJ}lypeob>KW~TUdmb~Q@KFF>(&BU7qYSS+l5o~R>At&z4=zx@5DUAm{4-ps{tx+L z$ZBjg#pPNOd3G5*SLOHU7pa84%c30RVzZLxKX9{il;6B*Vc+r2ApEVQl6@JAc)55v zjm*-HVEIIFeX}j0V7X3J*vTNLIxj&rtlPZ9vmCCH@)kv)XdkKDLQh8C)|_m*)$FcE zuyebf=(DM>f_1pcL!#y33%0zIw@3dUuHHMU>1c@-4!uhYMWh*!D!oV%2)#%N9YGKS zQbJLxf}(_;&_$F^=s`e<6s0LuL8XTx2r3{Yf`ukc{Z8=S`@Q%6)3sa~&+nWwvuE#_ zGd}&0`k(z+9XbAb599aI7H66{&~r1<0;lpRHN)*0{li8nZgn`JUC~hxf2jwB)fd}} zYopwsP;g8yum;ijvzgo_Fcl#tG}@m+JP)nX`UMRe_@C-F$UoH;HVS9n?hjmUX62rfZH%3DtW??Lw-KKGD;Bp7|5snXG(YN0F8CPmZK zx(e@btHnLWX+w6da}dA1a78=;=SVBZjT)_1wfp2OWa3YjzNMDwfx2C+*A=^1cnXPk z)jDcztiU;A;tLV1Z7#C>KHn12ryla?XHE>mt7%k0K8wU|g1A1JK~eJ?HzU9xxD z>~GrO#dpr%N5+%zFDV}U+(Y~JP7A1>O}~naXuLWC3_Jh^oPdD`z`$Fsw{%WLmdN*W z&yv5Wz>z1-MM~k(SO0cX*01ZRAtN9vz9SMTSJ{#X{8ajX)+^atr0N`OSivIxn2#s% zC{R8oqKzQYeCZN7+9?8_R6BNJc=1zsussN{J-T3f5MX=o(s)+5#V5^dowmbp-40q4 zMC_VAl>Wb)6Y__ddlhZ;Ih!cV7OO#fkWFkHNt>LFU(+9bBAYuD_&laHOuAavf-e;U zQ4zG3kKonpr$v$aIi@1ssUlv#s>G$aX2&?YhT`1h91xBOq3DD1e6{EQH8r5mmc+fh z&%+Ht{q1@I(^B@yrt^WinX*tS;5~43VT%qnudfQuSZs?JP_gkWhb@Vvx$6q@NkLF* zrLp0hJ^2y%@HqoUISyiS9ZcXZpUwZXv|qYfMWLKeer=#<=;#rwk(+EZZ;+IAoAh$G z4{;}i+GASt*Z$tmPvV={Da`Q_`9edZhX}#Zsq8O$#=XA#Xgl-c^+Eia)H^;QoGkMkLsHRb?99KvW2W?!$`cMZ;I z-;SnkD$+1O(-ZriV?M`58EL5&nt1!B(xL38e!)i2d`Wi(VY60kQPcRH_?`D6H97AC&Lshk$Vdn*6G2|&d{NjL}3_y zRiS{ly=Xz=IB{^R-L-7!+H)_W?Kzv0OIb6^uu`jyd|fNCV7m7vu9eAZGnWhk{moEI zu;9NH<&R~NXLeeR$90XO#tiw>FBu34E1|SoVgi zO4tFO4~ZIs^QSX|pQor3XTO4T+hBKdf)vN2)lNhYJ5aGV2~Jg3piRQoT29?Sjd#P# zSuBkY>|sim9rK${CfzjnViTmurjO$yUgb+FJN|jxzn>?8pGV}wH;$^5ntY#71x{6# z)QL^;jXV|uW(M9c6P(fEPpA&) z5-lCniKCiGap(AX=g(=aXZz~Z zF{TFpyl;v6-Jes6I8 zsk^E|`29K~*UDVAnRmVN3+nZmx&1n)Bli_-EWMmeJ!Ipn)0F%ex3%_G)_kwLfrF(HlBy{HNi5QriVEALvj$@b2Nv%purswLDS1OgFr@ zT|ZpB6g!V*NMkd>|Afb=_f5++$F-U(1Q{Swe-n=wA zZYuXP^5eWBN=R5urb{nEnVFbP`qBMtc37;kP+J@00s8}fsEr|p=jK_LHZ5wlN6z(+zggoA=AAT;lvSYSvqb?H zIiacqoJJ{MF6P5sQ?m^@2RlbQA>2WEu3CiE^$^)ny8ipl!)LnT88$p3VhOA#BzNT3 z#^_Mc4dn>d5a-m%^&>X!c_huoO6anKrh>YX5GhUc1N#u;_rYHk zY5Eu#u)@!b63+yuSGK5VoEy%9h3nWSp`=KMTK8IV-{4Zl`A#RAW zPlAyWY~M;=qhHv~jb$df_NU23X1m?#3A6dB=T~%Q%(Z%ESu!w1BFDbHxXNT$=BZtP zrnthkSu-}TO{(s;M8xQzl!Fx^W`>&dUt0_)`5OAhb9Va@uWXrRTrNy(Tn+3hfNerY zy{ho}^7x7>lfhGV+lmiYG3eidx6HnXb# z_d~DA3ESFERf@y%Dm8%!^7fp1Co^-t??*SK;@5Y!{Q%sP?zsQ%;Dl(Oj5Dd=#=1)3*?dh-gHHmV6 zg!B6XuJHY-4sio_DvQ(C{v-UBnd{%R*p^Q@XlIqZr5CwfmyqicE_JQu)q4;Z9*|cG*7= zv|8Daf#I{go~y*5iz;mHPft0xUuIqIPP(DuR}Q0e*Y~jgc4tG3hYYV>D+y}vQw#(B z^N=DQnQiJ8gc^dAt^WnAR!xb)s2FXvbq;;i=I7z?6FpkxGrps_(4JRzS;0vOU z-2-&m-l>-w)5e3Zu!;z}`H8F6VjkB&-SLb2hwmpY>dx4ti(esJFhw?VPGbLkAP; zPLJ~e+uhgCLub4s1DVBh5bebkz#-imQ@sHEk)^MvB*1-Zp-oUfjR2rUIb*jnD^{sQ zE4t!f_r7$-m4ci#W9Y2mBXwLTpEBcAm9DU5mD1rz-O+VUtfq_o7Nob8&i9LOZu0>4 z)FMMAyT`BTO7^$+xx7WCNl{k%PnL3wo&wy5U6Yb_Fwd9Y;IHO;m>7F=(&m;z)=s;a%3ymNiv@Mmk*y)5 zfvZm(bJE89yDqTI5+(fdj5u~$E z&q`aky(9sSxs_iHKTYY5;GcM!XpIo)Y(m8mnd=5h=(!mqzc_Zs+C-z2T36J{L9ZIF-vOH ztni40b)0KMtrusqZiqNR&-p2VVJ{p)gkB0;R zDYnTTRoTHri4@eM)+D*vYAih=uTtH5L!CRHNm_~ZNJ9TfXGINtA zqjB&8D{rsTD~CX#zC@*`sXUkk{wpWAASyP{StBc%gq4d*Bt@>izDkK;kYtM(g4jS4 zW)GFdTi~>-C1j1UrK}k^TH9oJhW_$}n;sP9L;Qv}WCbPcV;yvj*>^a_nnIz67fuaJ zyoBTy6c^lcJ~Gw60RIHCKaosA_UrpClsmtf4H@O0ZeCG>f+bXCr%o#ecgWBC*h18Vj?_GmoAYtqDVDbP~s>m%vo z(t|NLEn5a+fIbrAdb`cVlmCP_@{CorM|!0sAdhTF zJIFdTk*{BuWvTqhbN+pBxbN|qOHsOZDQ-UBm?|sb=VHKA1c74&eyTo zwt6S>V;U_drD*-c66}N>pZV?2F2l8pbhlWR$I|uQAGXJ*>V+iBvvJjB!CBWI=U18r zIrr8T2zqJEUwS;&Bk;sb=oHm^NehKF9;RZ~o9GJGgIYRP!S-8+bAXFZ5Bx`5iTb8ezMBzcPu6qWHon zbdiqEB8X(K$8sv31I3%PUvM$8(d=5Omeq}LEsG+4aV}rYuSQZDm;IT+77ALcJLp$?HKST>B{W%R<|+7u2$)kU$fjZ@ALn1W&xn_1UF>WGTY+T&A8q0v5?P( zVq=wAoLR3bZ_~OV#|9;fYaTi=2~_I6R+l5R@ZZFohHqXRJiP$#T(N2I-RnA?DY)~K zqTX69Q#BGZz!_EI5t`WCD`@~B?RnDf&_rNvQbX`152vdod&^_}F`=1mu%_+@CWmgO zRcu*;7Se)d4xwD>q%-8R7&UakUzW}dNuPmpuuYOjSe!WLxBMQu+$}ZGfVIG|&7L z@%7KUNTs82GDo@L@f{>hGsE=CQSWl_C-DRbgTH({efzn833cID%%CEryNFg$<{`ay z`8&qD@`9GiW5J~fCZa_U_RzbFHpZYMHwa;gY?h+m{;A=FBL6qEuzaF z!$-aFPJfK>&xQlOAd9Yad7T9rriVC`-3D1WOirzPpm$&qrc*vEP*yvFA~PwiwV13 z`Xrh;ut!RI}4t$4(QHOo;UlNhY81OD;5`s;V?$>!YE8 z)~=x;$zS_gO`gb(X*!kPu(Sf_Ba(bRXhV`suvE!#vr$fux81M|BO$93E+4xXldP@G zi&k~Dh6U8mme|SsK?dc9-43SS85wP5uXi3UKNFZLkz?Eb@WCn|UW`&34R9U3fJdcu zMvjr8MAJVgv0VOu3?)D=1)zi_J1q*4$n)ZNipK5h)H^T|>wW7oBV9xpJjXi39TN8P z9nw_kvpTEGv;F4|kL(3m4qbW9|4=(IW408i@MRS01}i$1pA8`Lk9V%wOQQ#{FQXvI zDDxBSC^kMPUe^nfjGGB3W^vvezq1t6Vq=U!q`#RaIMbx3m0IVviRPnW5|m(DRBzz$ z6$@HT3`&YL6_(J$hqhkI%dBw2VaU(~*i1a93()q{{TZ}y0(rBL(;7--kCv7o!YhGgKeh+S_ z)__t)pl(7gNY?tv?@v}qI6)t&AZ`)3pY|vE=oCH@X7d9z9SI*WqexQR0bfx3I4El! z2jvM)zpfs;A8OU&s>YGzpfYKjBvGH;5L`TZ_fOv*=5ulnKT__m<#jIBPn%taLeKYu zeK%j0TWu$6&jjTxT0?j;Z2WWxg?X82mT|L=nn)1}cD7TISevUidecZnsnb^@v8iiE zz2yW+LiRnAn(gQLwn#u5aLgL4XB8ns$h3i}zt+PfN^6$hm-W$nCd-n|551rfbyTX? z_phS@cA)#17X}t>1w(U<5rPq$4DG8ubz`%;(9anZ?)p}M3&wtqm~=MDEkb&1k+DEM z$mHh=DBB{jT+?Fi#oN$)5i0;^++)=ZeMp$UN3K}c6g+Pp_pU|-=aZ!fxzBzL%ZsLl zHTZr3J~6JHnDp~rh1UKn3g4br?Up5c#4t{dSl_?Z-dd}Hy476UYHmz8Mw!sDe(NQ) z>1kJiK1N^8aw`q&U}o7W6?M6>e1lI26eQODkIG_i6kcr4D94{nIMGdRWdThRMM$)+kJ#K#Nu*q@jz(mF?9=Bw>Gq zoEYxSUAL%x7?k(rK=0fW05$C42q#UHvBLRbM$-RmlGTYRhnnQTfE~b0ysx>id*Z=* zVJK7}`ttY3bw&#=(!;0r@87Z070z=!`^uVGh#x-JTw4E`12rO1fN&8oyn{5s^Jtj3 zPv<%sq?Kxl8eNcAHD+(BzGf_6d{f65P_;`lsPR$ItlW_LsHMgRAssY|Zq>l5lr?)2 zH%yHIqbZ1wihhURxeWtM_X!|_oDAD@XGJ-qD|n)DMqR0otc5SR45IJ!3D(^UT+Imj zYgJs5^YMD2%et(^Y~#%;yEnC;GuCK?Z+eOc$OIebE^`A?)BRb$Gf|QGoa#U=kV4!6 zYV^NL@S0R;g4&6)&?gsZ!VpLHJZeWydZtM10_vda>EKe~#h=4kjUKnl#WUIKsT zCn;mIapigM#Es~w_bgwvCzR@Fc`B~H_Eolt9!KaG8kAc4!Jo(a7s%Q=`v;62Q?~cG zTk^AP0863nsvgz3mNkaFB`R|O$#i;~nk|4wGtrq%08UPHa&(~WF~yo}L-SkfGIttk zGMVoilv|a1qj++5?Pu2FedNo=IYR>tgvcrOXg;&#temn?+>7Ey6M!{{CeG9hVg6)J zL?-xL74GpEvMxGDN?5$2Z`Z_`?0;d!Avjt_{x|sKAnqQz#FW-G2tKnRsd-$V%)USk zGzyLuEbqLRwBO1)N!(lFQL}>(N9^z4V$eW*9JVk20n-f#A)j`9W(~N*F|DoG3J5P zadI_EB};!A*sT7MV`|4t=&A-*CK$T&qUysmln5>{IsAi548lLS#2e&GEQ+TY=f|V} zB$x^HNnpuR)tqhKqir6d#Q7>8d*G0!)ccmdEjX+(6pX#9iull^9Cgy?jag{>qSEFG zisF(YH4Oaq%HbLYq;ar-adMJXoLK}`wAn(!WDkpJ7ZW*WMYKlg=(UHDSECmjEUW-s z1wi1AfkvQ1`R_(GRu#sFmAYSp`a~L7T>E-9E?68K99SJL9Wf9VMo0OPZFS<^r>Q!P zxIHvuTY9Ih$y$LHp=k|Mvh~z35@aZOtY6NystDOz{i8FBrUln9WP+#GJEYSnvUD#b zukj&ZHKPHH`Yn2wNgV(w!o!;VesNoR7Dr<125kX}a8i}b2#+)W$L(rbk>aYRAK#g1t^%L49uTu59}zUb z!9&~+S$DZIO1{FY0Y4In#pmOy`q5psp(n%74{)FTlT`dk$zS6r{G0FZ#Ieht0B(y_ z-Ko2@zW^5idMZg#t8a2yk{rK)15xq|8@)OSAcxtL#{hCv+!(X<53#a75;$V`O|54Y zL>oe;)+M4Ap zXkzRE_kB&L>{wE58^L@;S+c7z#_-X_WYMUN3`^Q5YCY3ToL@fIZmjx7z~XLm@_Z@7 ziEP@PS4pG+!*9a2Mu6#zX>HgCyfHNq5E({*$S?v#MoOy}5xA%uV^(A$1BGvpi3|q9 z2oE%@PNN;@?A}#U;lWCrkL=3Cu9(MK#$==Jlnz&!TG`n%o0V-nmoD_R>ZnLvXnAxC zca7#ysjJ>W@YjW~bhiG*##`mEcpg*V{6c_xBvaQ7zP%JJ+yxCg(iN-{QDc_t!J6#l z<0DtIzF6m310i)Q(DfI++}Y@{+(Nb8p3;ZWokrDm4@iO%^|>w``hc#X+%YIvwtcpp zg1kdT(bneo%9p~g`t$3UP(ZNG|5QE>1RK3W;pJrFQ{^cqP!bT1nuJL$^RV=+aOA^T z4Dbq9UAEJz{+JpcMuDpiAxV5x_YA+j22>b}Lrh*QmCC9ZGs;(7RXOV>#``0wjCyat zEzS(Kj_$b3CD(tI+ujzPcg~CQWK$z212M$vE@X8qanSOEPZn4awX?2kW#ROD zO9Z$HIHPc~a7#joAE!zGz8`R<0m%@obQBJbIFNW{$t<+~@b>nFGS-!t)R>cG!Z?hX zIl1}}(|klPU1pfr;v5!Em90I~hDJ@;nso1svF?ouHyBY>T4shekq+0ez_ZlxtzkcY zdAaezjLb=`VLuE4`SUSZ{@gWnCA1Lxm8v!KpnzSWL9p$K-`b+iTNDl>-^_!jE=QG@Ge%^@$z1BcBUc(5NrIE?w zZG&U-*osUZzhAQ!-|h{Zcob7azsG;|thPYrZVe<0-0mOmflJW_H71ix`K z#B7jU?SYd+r$mDqldyQVspdCtg0_R~_mydoN4J7Bk9(L2Y zwez)M_Qo}xTYpG9`T546s_pLn!t&+fzuV(kFI(SgfBPkOH)@yEH$3dt-m<^6{}oj6 z=|qKW<>$*4weNjip5+<-xK2C&XR2+g`0YPpL?B+fHR?y#p-$_asTJBER{D%6Pf-xj zO+!^U{5S$kOAoV*094T$?W0?gE^A9JGB!ZFr>6tWx7Z+&b=L@~!_wMM;gY`0ZY^A3 zyaX>c_(e_9j&b$|1khAO@93Zi3el53aZ*Ka)TlV8U%>MX9$+KHFI5ph1xEu(Zvekz z_y+&GFVA`^B~qvCn-w2s3RJ?Rru15V`(U1%e0MDKD+d6zcqNfh`?4JhIlOiK44O)} zDV9nL@9nHNmo{tsVfkEb1uOV-@^-PA&~?CEfcx&-1JvwCu985_rdGMf5w;df=AKPK zb%-f&qW`VCxj!vr3ZkJWF_=A{N+ozM^y0A#U9nk^ADBDzW%!SXQ=qye9*Gz)ZEu<2 zN~VD@8Sl!xGO-kd8v zOBQ)|33dP(@YV_dDNbJx`M9pgmVR)V89nKAD`!ZatzvY{AoR`N(}pU^yOdA9;RJG` z6;IGHy7T2Gg;M9d3SAd;=_oVjBs|Ma0>OQp^11PNWa1d7Ye!jL64$txd9gD4p$I2H zN9KN51^>{UQ0(edr`&v=3@X+ zA4#h~?Yy<7Xwf_G1q=2VzYXjHre53CqW2gQj#E>CT7c-1)7NPB$g5h=M_G05{ z*_}o6-O6!32@nGjECDyK8BtKo|7$nLmo~`vXn`#N)}2n9tD?;ABA<0rhcnadvL|{b z{5tHfU3sUG80INUuKkG+0efzeB&xS?@`{|4E?2x=gr2SGcnADXVXX zaYI@1mUwSt-iyYHjr_^G!gWSMEYU1sz1;7l=dFy(S!EULn%9y_+O}d;#@Hj=ZQLCN z2$Zwb{wqd>BkYG0)iaaqQPI?@IgTlB92R6^!i0cy0-3#geS{rz*UUJsF0m76k)3Ji zJ9Bi|%FC*i6Ork*f8x{{)W#`0f^OXfo*pvo)7i@XPX1Ne)2q_}u67Js1Lm0uR4{7v z;ALA+z5*2>ct;+Rz*(Z^n#8Vg+CT0Yq<0Dc3b-573}@Eoiw#IUydqM}N_mPJRJgo3 zJt&_hQ%Kny!pn14ui%Qm+~e@lU5$7lCOC^gAFwq)Yz>I#+>2$loK0oC8gg_h!DK-9 zj+`?!G<#0=9Oq0$2MgdR>@bTkQ@gChpL-EylPI^Vx*wNjVNe&7yn9{PsS(sSMfv7c zq~{lsV*9sF9W@IH{GP3i?<^VVeWgFUCTa9d!WIQU4#%zf0if2D-vn}QIgoQJfShYl z=ZESjc4ig7N|tkb6HqQyRlL8m(mcrue6);bU-jry0QPB{cOYc2@9tyK&wtgh%YLR% zk zt1u!(MBw(Bdl%^ZYhEW&em*NgcVN@Ms`!=OAHg`#``S;^v*cZC>N6kr+1syDGbb8S zPmknXdAO!@qTidkGfjsJkSfE+^us~QKT_pnqDb*E{qWu>fB2YwD63oj~2Jw;s7Zb3UJ_PowC!s_@3@jK0`06x4dvwXASV zNu?iCQailII?RKrrOp$lK>{1CvBi5!!_J}ZSwgDu+g}J_%UUJr z%m?2G?HJY;h9)9ARCLro3L8MC2W4P}?AQ77Qnbj$9s?#%`6Ou^H*0?o-|v4ok6oK^OjBbiHS@Li;{0E055Or=vp=ss8oHRB{ttzWA~V@&!OX?6dBt5>Qvx96lp3icB!o%rLtA5FP=Y!IBbjN9Wm!Iwrf+&=GOO|oo* zo7|-Rt+0vtu16hNv|v&42M|yw^DL=XErVP>03p3|=TBr`XOD4Czc7K@`GKdngUoRW ztvdUSHw6@5@aRkHmYPzTo%R7Iu4G_3wx#bdH)Xra&}*{alNu1eWO{9&pDGI!%6Qi1 zHl1k@w8~4FI^1>mz7Obmt!MO9D)rX104Fa97WJ8(AXs<;7eo_IvrAEL#h9{~*||z(;H9-{YQ#&g z=tnN%ld*EWL`~$c2NDUUGtmW24>Dzn>2EhLDKxBbkj@6yMKfDy#>DY4V4{adT==&E zaBj#Rz8aZaHs}H}gWE>)FjkW{DFuDxW50F zaTor8d2)uMx(S#dTX)B6k}v)8+iC7}hr$eniGO z%41x>jHRRNzYEm5aI;*Re1YUElFq8ttD}IZi{pL)n@Gu~i_J?n4cGzl=N;pWw__;< z7yVepfc8mw((CD%zT)F&4GA8!Nh}?G?C)gA0dMl(_W}V==E<_4#R_-!yVYgxnrBX! z0NAeSwV?Bx+)>fOptsYIm)`6&IkswUalifvo6~yeOf|qtb&9r>sKLpTxcu#@dBE(q z`+DRGCOM@-&H9%7YDsE&C9vJN3-z7qgklf>y^-%sMDM>4V53cd0z(JQ)oj+ zTRa;XaFYp85Bp80=%3$7b`Vd=2FVUW1Z{mw;m9_V@)SeLhr1wSJ2uwLiMOOrS(I`M zU`ioZotdi|J@NY`@d|90qW|Bnpe!Pjgc~S~b?<>wuk)^6fE8{bml5sUn0l)4@E(<( zBA+Z`@_aYL39kOyQFz!>K?4`H_?3&vQ&$;N$~NeYKp_)p+TK^vz%{fY1E7Z{N5>6; z+8Iqr`7~q7GO`$-mC~80pBtt?>EZJpba6a5^}Vf^PyNnyYkK;fn}PSh+|+4TMKeiuNkagxAkkDIxN zuoCY8G5wZC3TsBeWLAm<+jWih9~cmGF+9 zxV6s$JYCuE$^~|J6qC4`C*L%nTeV*I3tY|fDF4BM)_Q-!ed(20=kjAS4!@{O4!^qu zu}Kxeyj5*g)}LdxRsU_kSV+nr)06MJ=J6ncfYZWL^|MqfgedkrmXk3K0|<-WNMSeI zlQVxgl_=~W1J|C5O$M_1wW!OSnIy07XEdq0@5gx$in#9NCFL>hunJI=5zOaHMiNMX zBrF{*g{~izH>(Nw0wf_inN{R$fR-T08o4kFwTn%L*0)T)yRv9a0mxQMZ&lbug>Tn$ z6vPG&l;!RyUQ0DoO16c!6g=fhZYBL|w!&!FvOphMnuwfvtC&=1fF7Q7fyAG8xo?|K|>R+Md z!9r-c965dvoMTk4>!I=7dLcd_$*Py^xmx(>USx< zCj%KwoR;Yn{X`{zJeeNEfj%)!DD%$^%N1Po-1_HjUxOF|B%1%A3EnD^bU=o>4XlLnYl$a4Crx%@J3+V6w1WKoT83%cOAT~pr{A+&dOE3;yy^l@ALxqt zrU_1;8#sN^ld87>&z{ zT-6)cK=P@BBLM1h8k`gYy0=ZegEWGHYwB$j&g)TD`~s;wCc$r+vwE<~2ZV83fBifv z&%Zjp#x%&jdrKN#-Z1@vCD6l8!TuBDgsNi@Xwll@$A4du0(E-0W`Slv#_6VBGW_-u zU`hL0oGN;z#YX&6pKn-gvnyDKt_=M;oCT_8hX*SOht+EZ6hEc=tofp(O{%P&&c&|vf^>-#np?Wysp+c_>elSd`OBxZ zNMrZ1*&1*VRgP0@0=46sl2Vq&r69eyPdkn=iKbc$RVYRJTr{uh61#=paf+s>d%f1E z%r&)v2z#&3h#hoYIpIXzkceLdEI3Xr_I=MG1D0rL=r!6L%e9{(^lfbqYAA z2A>PuTE$Q(s1x0n)rS9w7;Q+DM{KDBui!oUIhLw8(ehdhmXBsXg$j)W6tSq#!x!J5 z#XmessKGsF*4MP&>>wC&@-wik1H?L>1fKqnBX^?g`fIv_&4J{%NtptcfddLy2E$-%Hx-N=%TX0Vt8w9!xJ=qIU?jd+xrdU>`D_vAaIt6UPCKU(2N4K+=<@z;m5_JDmMQ( zR29MlxcQlkEY!m7axwDF)ykx&qQEDsUs1SyT>@?HK5jcL(J0SK(_L+Ff|&`=TNq(@59cB_6yq)ERniL@#Z__VOkO^63F`>9wJts?p>FueE&kO&t*+ z0|IS5bIaqL%} z9>iy60U+r`oG>L{*@N;dH6e9CHN}7`kC_58HNz-m-4fCwBh#KCUZjR7GwMnKo(JKL zEzvY4bfokQ1<4&TxP|+EIWqd3`D zqpA!GuXC)}SIvZT0KB4-V`k8NsvrLw6nBR;ext*H^kjCDQMdNcFWdZr^8t7%_cdWF>YWE)YR(rHR(~ z#c^w_VXFyp-?|4>k;DdegZ{;~XZLIBvD;9qhRGUB z0rwm_xs@o-Hqye&1%CKRKj+;aZK8bdqcVns*~Zm1&y31!^Lj~LsF~Z`8*G0O%iMd0 zyMAI`@CS&V)>#Ke`ANs^biOcIRZep7BvXLoQYFlBsgfxts5b?a)>31Ub{sl-96)ZU zrXuI4O#gVke3y}~CEytEASJ>_&@Nkzbt)%KT;JS1^X*sUSK2z{NS6lN3dg9VPkkH%?|iMb(Uq;04XFW z2g+uxhFM0BgKj_2d(~*e&dP1MmDP~jtLym}xK^&8FW+mnxm^fcME%X~YPkp5_x$y1 z9vzbDWK-KKc*X|W`7lQ71a1B6P9OJAh8chVaJQK{5Kv(^HeQ@``*BJ2k&a2xMQ;mx zt)(GsjLkxb1WfChS;=lmlCJ|JG_%TVck!gQ!uFyH^my(D6=N8M;cb8V32iJd6_}=F z1A~2tE=ePgfm)<%C~>G%yw5R;!SC;Nk}g5|6B_N;~J>gG1mqk zNBHJlC^RyF$tAsuR)!Hy`Xv%7e=p0O{JQaiYUB)!M4_O$DLbum;gHdyL-HwUgmEm|J-^KDD0utzU!(pGnn(^HDAfRi?yu{ zlyixl#O8K|HctEN@o>K{ta6t-+N1V2r~dv}k^gRl?{inTm#M_EfEPyf-738B`6b%Q z#NQiyna}5LNDwpJ#}gUv=)Zg<%*GHVBYtL?bv`Z<=cb-TfsW-XL1&>}_@CIkywV)uVua&>=$Hg}Om*K*k{E3Y9ePBCMhp9fEka+V4qN>oO^d^$HR?jnz z^HSRLiPB#9VRmKf$Fyby|6S<}Uoe>EuX+0yxlex&_yhW&ZkH>HjjqFfj0ZV*F6h6* zZ;vN9G2dzJ!pQvmYm0L~W?)7`VZ`(h0>F0(&#VlY5 zI5itEttC|>>^vMCsUr#vKR5pTm?$*{BZJ!21VkJ*h;v|*_ylZOWpuSLT7Xj}I zq8~&O8=u+Ss*AOF;u;ynVzYitJOjx%5*fgVm1lcTau)78>QeZtpdHxhD1u{UZ059q zjzeha%oz>tL zuc7W2f{Jdv!bQqe9X&PZMZ8%ZjVMz{6~Rkr(?}*vIp$L6X2ANRm%7YKXfsN4z%!XF zHvZ&i@cc4hg%pM|B8gmvaW7KK(9rQL%U!iWxmw(gi2hAo#TDO3h%t-NN4c4(JH{AB zUi{yp-}%hu$`Py8MOldaBGk{N4`t`Zv@Md+mwzxqN?u7bN@1<6v7dMB8Jm)A-eoyf zYC|d{D#0VWWzgfvt9%vHA1x*Npf~{)yhN)+-w}DxQ8~2gs`AS9u2GK?+OqFFqQpEK zevKJEskO$T7jc)s+pvr;sY{Bonq#3!$qpY}F6v7!!>c`O8r7Md^L5i7Ra;RH9n8sBI)J_FT7ttn;5q7*;-0C0t+2ftf9Jwqi7s3{ z;3Pz+)#Ww(NL4RxwAiyM+w+{OjnT4w>?{lId+siJd|OBg)crXzQppUj&+nO89*yevduCE-je5>l`O@YX&UHK^x`z-~3J zYJUNvzS<^A!ntL}qc>=Kh8a8u zl>p{nCA6L-dFao%mP4lwPsH;n2DJW8ljz$kZ^$E0Mb&dH%2%_<%VgDKF-ngoyDiya zi*>hZ{qL5t0S|4Ktddmv{_KQ*r4=RmfRnh$)uht5?dA4J|0uq@28x;*z(iDBC^5PZ zoaA-lPb4Qvj3}-bm1(m+B+BNn-*0iuO2&zg}CKYA_J=af( zS^9XDC(q@G^l)lD7Inj@R=Em%M9l59R!d7lh(M_Xt+WlX{bxME#Y~OFtJg0+@Nt`*Q15!Puz!!U$`he z?g<+cb<}f8IQ}#aulX?+;q5gnP7I^O7Jh{qDv)1jLM-_{NF$GhHr{w+eVH2CrUX}@ z^(g^k1bOM>TKVAMWiSp>pn^-$t`FFEiXFPP?LCZNT3%e9s!!xdmt31(VR1n`_zQ_A z1PeQI8rdd*?a2Y#!%5Ph=o<>dB8%D;chC^SA{}sX5yuxdIU0F`R^k=p3{go!4E7Bi zF_mc0Wy91&107u@AY#Ey8bZ5)=eC`aF}L(m9Uy8bdI^-GmKtdVV#xSJ(Rf3{(3;sn z0|lm9e~*KbXeG$AcXtfo1WhWaM>IEzNunDrOa#M)pqyN|X_@9!J{Cr%CLY9+xLAqU zz1#hL1{nwaRzqnA+^yPYarBPh-A!t!H^Th(2?UrQDG92H6fE4<@a(w$@w4&Z>ySrv zMX@8+hag~!l!kdp_Lf=Bu}9nxnA3~8pJ3{_v#KQEqLNrL5%~ak%9VM zz3@rf>ytQqk^@*2W7!t-8&^AhMp3H_IY(D<-1I)gP_PzCI&c59ZX%cazfgAEsl5>pZWX)}xX!{j({)!FwrsKArt&3JmMy0U+xc(v8I zxOnDl%q7{BC06l4!an1RosD0NKjQ-)x3*uAk$S8bU>*FNa?<*HE&dENBIZ(BUbi2V zG;b`i=^kIUT+NXNUW_ybW2=nk_;(0p-{d&3U!%aNvx9Rm?edmV<_>U+Z!8BR7i!PUzFq;hFh2_ZaB3u#m zHudb)VDAh5GZzQrep!_3P{{^d4ex+t&0l&)-_P^i8v)ngnE7}C{avqkCI9H<0PD(CE-ZheX z1(6{(qVR3RjQ|L+uW=)NnKPN)%boZFB^pd z#ETGm5%%Qk1JUmK$RI*r-}ZU8r#)JrBkzq}(svW`e)}7o1?IW}dy#K1wgpe}VEX=~ zIFX@ZKoHRTyB;SvnG5l!+m*9q)DjZ-VQPPASOh1z)#X*tBLvD1)TN#(t4%cA;;^?n z)kxi{QELpm%6b|HPv<9!t`E3M~GDE9VwxO z-dkwW5wIW;grM{uS_oZ5klqQ32seUAQA!YOAP@mjQ9wmPld6E_TM75`yx)1x`6-vz z-r0MvIoB9tj=82nD=4wv=@#$>UwZRR-Jio$7KYD|g4%tmtY0Sg5uUy%dmKk515}-c zceAR2bY1bgjyN!eeJ%56?%|_?Hw;x`WrT zY|j({UWacFjShtqU(#>_^}YS%VSWU|K1HsqIZE2;()`<^KHz z76ulR`eA4nQGNX$pW_>Pdf9EM&y$NrO~mNz4%1jF#luUjBSI{-&5ss%ovI!_aFcpC zD}H5y>Z`6>VCzoJGaJk!epOKr+{}|PhITQAieXv5Pdo%1WZ=w6>gpGBBMRgZ=n@ZM zxtd=TQhaL-4O3XD+6JcIFZNFJIt9>QnrnZ*Sgv8*7f|q!?%jyeMsu^QK!(85)n8(1 zuD3b1wz72HWM(mEKOfwn>)FbB?-#>{rsE|WqAU#<_{JPK216rMU z<#Q^X(I61DgP;sh4f+PcUQFl=oY!f-bt|j-#Ho|dFP+rzVk{keDtCl9h~*5bkajgo z1wp?yFros2-gn2DF$0_%J(SB=I&_8YXx5LNPwVO4W8;DJ2k(rZnLvWL8EAS0a=~uJ zyEazAoI;mI`|gFxHW$|j?DZq%p@fIw(bUw-cQhz6Hg%VII72wgwFV>UUO?Z- zPeTAt6UaLT0K_o|P}``eys|yGhz=GdC!Ni2OOcJK&BBPbhK}C2feJ-!Nqz zU-{^*(sZx4P3wGfC{<518uQMhDH}g3tsN|+K(lH+&A1~*KaiX3GthG595fCp&JNCb zT;z`~0Yh(d+v<(Hn)0)tOQBCyK={wfz7nJn^g|i6g7s&S#tmK4RXBWIDl+Sn3lhwL zqSn)Qa+dc$`LCU^`*ogf%vjdMg&o~)CP$Gfu${&3c^(`b%@kh#Yw?o~s(>C$-v$o` z&P5b_avV4Z!wcDG$v~pu7)YE2Ktk)X1kw=KMTo{~Qq zaYXU7oTp>hv_j-;OSfGT>U(+DD1eSR6lUZd-S>D$r&tQ5QzqpvFj1G99}Er*B{2DV zN%o|13Fz4+M^Tz3)M&c0QalZPPciCpL}Aud<9tUgI9BHMDsGjApI*41bj@HlQV9?Q zOgJ?^8E=dA!^$YLRjRm&D|BEN%%aZi7D!Ubk*ChCm3T#h3bEkA;J9O8=fDKJ~J0t~+E>+(CWm$cN;v8v0?^zoDjMGUZ zz;h-+@iQ)-;vC3Ox!pAUBad7?cpQZKIpeN&#l}-YV8=QLjGu=Q%`~1XW0fM4!hkk5y%a31GiBX6p#spcDu1Betuzv}d4+$~)4aLc7eI$L30w=xE|vclH% zml^EN@7)~`)^TjkEQxDRj`p*J6AynU{`&rVM*sKMCy#%=x&QcRYu*0I-=dI&pNk{l zoV|>XzxK2K#vg19RnGtYweX64Ga>rN*5;(?ebGldjXx5PzJGo4@$VNU z{lE5I(4{|nA&H4Uwua7rjQ_d&b@j)SxWk`+@+#+lEtP)!{cFKKB;oM;pDDjjFaE~! z{Ha~0=9y}~X_R9C0Ojq2OI7|?2}0(2J~TWtN4Z@^0G-WEbNW?D4h?m#^@?3irX%z6L-EXaYna_ zod$d&`$3%#apmNJ-?z!lAmVM`;@6 ziwl)Y!wuuMmG-*_V!5!21&oTpK|s6#)9(yUI;!{UgicN%K}0+cqM;%1dtSe zOzkF=1YVG-qU4a}Kh_rTkdf0Yq>!bnHx^DW_Hi>@X$5~{T*K3tv!@AUgE^9hJe*4K z8?_tTY*U>hDf-DL)x+(7yx5ST`d(|uM58cENb&HmkgoKd$rR6pLjlyESRFVmdpR@R zfu#eVF0L^U!MJY0I3v$Y zhh@s-7p=V#{(ESzL|EHe)u+GzduJq1|L>C`P2rEf4=R0(6#lVOMD3z7b=__=sW6BI z?+)xp(e|J+$sD5#$LzJpuVQG#GwMS$`8KnAnNg-wh?~zr1hNKx2#wCU$kKM9@XO2# zilMu&-2o>HD5st>6aG;x*zZ%lxjkCKPp?y)VIMJcu=iX;I< zsB>AVXw=>-t;FuJM0LeZuFby4@OJvW`z3blU2^nLY!+OR^kz|8T8gAM%S409+{eFD zlLJd!5kM_%;!_C?^K}#fv>~ASHZif8B-)GuGJ|vw@1ZDlzsmbp}y)QrkQEp1F@? zy>izKh+k`N%&Gzer`p%}ad2yuf868=99WIXzRNq5Gu)$UAA%FrK{N$zQeuDMi>V&n zXs-y<#00;S3z@}ie`dU-`eWmnq;AUx%{k(4eoyqJA^==A^S z3vOj&7?8xvI$DMt_!wAd#<~Uk0qhO23eF5ulLiA}{0l1i(_&ZvZ?meNUn}i4crK_B z&?jW;bA^*Lb5 z@`F4SkJwE#>{9NLo<}~se01@%jusj3h#upee~$4^!SD);I|=U?x=duq1H}6YXMG;! zkzY%fGWdv{ACu}Ko)vH5m@7ZPIzw9o3qlTk>#0b zoIhV`_s5TC@<_?Zg)5-GUvzK5m?!cKw=-9zG0(~)mor@PI6xU{?DHC}I^+2hR35~u zIg^VBN;TN26L(1U15amAy&{;a;{f#pqoi%XzQ&7Gx-)A3QVYq6e4dCGzM5|kJycRF zY1ejkZ6Xsu-CDC#OKNDO|3$6%raWzq;b$4r00vznFgTEfA5rpSoP;znV-_D&yBwKI zkuh8eW>k}`pTLMeNpQDB1BO%vi%c1!MFbqEWP9qt-xWh*ZC7&ITts{oEjTrOuz`cX zx$_GQk+3sDZF67)tF4WJyeI$$Uhxyx{V$JSUXPYqkLF_>Udcv)Z_;R}z_Eog07D|d zjA=BYtkLvG7)^QlCsE|#cTVgtlZlGR#(R66!s>q2dP@2S4{m)E=LWBfz*#BI4PMtp zc$}0}gS$+c00&k#aT1|v)OG@yS6xBY0?gN=RlsTH_rMu)a{mDWJI}nB#>A`5QqbuF z^i;;LlI^M$L)=)yXLpQse61XYcv^D>?teS~%%no3sJ7v|Kw8Xx0mz&M2cQ18-cX@* zJ(H|AXmvijp1EZiaGoqH-W$c&KYUkF0}$2z^~_)R2U=6or-hL|&m4+0gKo1^`IxyJ zF&pLFVq#GDaqzUZ8DFZ`KE)+Nq93Fi$q+C$fPUou5B<2FxpU$+pdYmrK_uPJ+?(}w zF&w6Y>{Is*B|u;_P3%w%G(5pSjF5(Sx1pO5W*6U_JGW6oPm&#Utx^AUfM=jBVq?kpdjc{G8>J&-}h@FKjAn~BzDfFzGmFZY@a_4u&m@5T$voo z$(g+bKwXNDLwNvyz+yuVWt9nfNpdKw7vmxi|MNqUtdf%jzDs&1vl%olEJ{^2z~g+y zd?rqCbM25y6?V#~{p8HRGuRgP3R!m>wFmyvk{Zg#;e`h8xfr}>#CTQlH)=2yMh*h5 zwoklo4?!vwW2g%dmz7a^C30M!_bDh7RGGs+dCM0w6fwb&4-iu<*v#={U_g+~%7iNe zBq2jcH#~(dYjoEpf=S_IRZ$Lzb<%i(h5 zOTuuh*i42fYNL~9-I8l_Ny6|0+5aP2V?697?EAAm=z`>v7E_Z#O{jeSx*~(D50>u2 zr9{okrACVmasOQ>;T5vC50&|hiRXG|=XN||=PhIBO;u5F@qeFUw}3oUyF-#|?`bul zj^Gp(Kpm6P344a`R5HEo-t?x!kp`025lZ`OCSA@3I6zj~CAg+`qMCA#aI2@d0)%gq zDdZ>szd(VxJqzs^aZuuWhTnTE{s|0rs_q;%;lFe;JZ52;kGMPV)?w9&%>oAsrL|9! z4RBh@>(98cnI}Xa<^s8p+6Q9;73v9)8Z2x@=eS0+nVMEe7qx>3b`r_TLwp_plOmcp z$ADrO02IT34`q98?LLZR#Sje?!@e}Z^$3B=Yi4A*bG8K0`__xRZ7YFOoNl7a?OOWW zzt{Kr>3oxbU2fOp@}j7kiZTqgRnZ#{1n9u3e4i4l>((?y64H5}g5cHuaP82fQHcus z;zSi#RBb+_A_vtuZ`LXhyaKBzno}TaPX}&JfE0n7`Vo4~f8KapBk`u@`Rj2d`#Bw( z48!Gx9Ub5yNV=M{7a4poX;AS1r{Msj#&=2pzwhoN0XWcD;90+_ z{}e%X-@cGqG^iUdvG@8`Toi4QE5Ok4g)3x1SFuN(iv(@*?FoazsoHcgr-j3}GqdvS z$;c)SARBJtQ>o+VfTOgQj@Omr?iOiXoyS?jQBa+pw=&T9`#isOIMtO8H(IXB{FS6W z_cdi(h;USpItR|Ov>&sLVITAnGQh>hfk@YpmVl2)O&e@8WBf9-#!xmlPu)gdr}& zQEVRw^dr6BrA(?f&W`w%?M)Pl?j^%{VaQRbc@o=)gN`ZyJKe7@~bod z@Du+P=bd{fR@qgyMaqQgI0>pXR>pAkIDdh+w+_DvP2naVgLxJ&=+gvf{Hqm1jfoA9 zZDn8CpCtU6lO7wo99b%S7&;^}2A4zy@ECsht|dtl7GUC%9GI&@%{GxDk|5(^ub$&9 zh4tXIlpXkr@fXfD?cWCEYxo3#m4isPJqZ+ru5UjF%8KY#*p#K;f1{*!@X@A!dd+;) z+Wtp87$zmssDm5Kj5tWLru9(jw2(~q9dMg)Ua-NWmNZ(ykg)|&An`-PuM$Rb z4-*PZfqu!2#I)!IQ3CXfxb_K0+6{=;P1n@v`L7AE3K7*9@Y?0n;N;5JSx$>fes58K zQoZ!oZoR9?yUU`zt|QNpZrhDY)!ufjngU1t7m~*7UB&^Z-N=yzpf(G**|qMK-Auc) z=Q%b5UyxgR>4deK|w@hMC-Q9_#)ggHIDfW>2_>Sxs#n}%&$mi*c z9(@ZnS*+m|`FZIhN2U%lQVs*8y4qC}$R>j!4P5)LsztdO1E}^8R?IQ8Xp03GN!>UGGEy;u97Gy1g&RYTF$Ef&{tO{+p@zGn7?33Rktrf`XV_se(gYtG zKzz7_jDLJS6bmJS-O&Hz-A2ttIW6HNNw`=n`?afNz@ zu}-W#cAjtTjFFc^7hh3%R{}aM#{?9M=jBhqR+kYbO!p_-0}IrU-89W6=eUv)v%t=Uk7mk2F(6nVfrW&2FVZ|T>?vAFlzRzaJB$lZGe zjSJci<{^Tg4)^I=)D0(Fz zJ~SP;m?}#3o7)vbX1kjLg$XKLs%EVVR&D_~d^VfwR%0bn&n0HLea_K+UI23;Ta8+y z|2L5r=34>K!+5~#<-6v*)rL9$xa*D)aeR+TdGVaH%5*&tiUO*422~#AelwLfWTG& zBch$kMgq^&@Iux7{~}s|s9hpPudR7eHUu_T%$Oh#L8?j4jf_8VXiwRZ0$>vN3 z`#`prC4+q)oP`vmM6YS#TXpR|8Yn8?a5DPwn}@&knt%Xmt~Yt6QQCZ+nr92U&+BZH z>|^dNh5PwE8DKMDa&QJ!Dx(hu!;)Y`-eU$?_?Q8SvUfl9EMGKO#oeXknWAsh(9?FC zW>QBVR3TywO)DBs5pLEt4B?mZzW6*Bbi)Nt(I1`x*{TxvSCgXzUawv`9gjnu;7l=g8!UT@%F?L4pp zRzm!IvmM}U`9DX0dWUx2luSr+6cgYk1VX^Pd-|B)#}^Nw1s89kFU0HWKc)#Uj{*il zsfM#Vi?2=od?>Od08nWc!si*{v-(PBs97CmjpFAu#nO4c z8Q+;si|)FgO*r`Cs+1UYK>V`)qUgz=4E>CQzs6e8A9t|U1H4YdY=U0DL_f|$Bd*S7 zu*G(H4{<*{Vxtu_3QlQ~Z;&eY#U7;bFmw)bZ>B6f->Rze)vPv?X?<+Sit(XmUZ)AURsIQBs#aPxYCpcdFI)9#t?41@PGDT{D?j$7FipMKs9i+sz_+%cvE*p+{AxkR z1mjKq-yRv7L262=R1Q|0Cr58*cjc5`AjJPtkB)x{%xil#TrzPSg%ID(>v?% zp>=&$Z6a@gcMDkV(q|WavDyCUI3sU~PK(;_jNxU4ssXI6rYfYeWha^Y&$JFNM4-Wu z?4YHdA1G$c0n^7T4*} zs}?TC0%HP14;<-*oxpE2)6=Js!d8&9WxgTwMdGH0SyAK2L1^I-yV3d}?++kMaaRuV z4qd(5EYsa;y7f*ZO~5zH|4$u4Gl-ly@B3v9t$MIoroZ=xEF{1QN&Mzjs(9-GLj)_fR@Puns|e1vu*f zlTsitsc?$Mie+BLyH!VQJ$oWwHPFDe`hX+~7=9H`2#p|E;DA*SF=TM_U^Ka@fxmmt zSxn|8XI9r6i@clPi(m1+5es{D>PhNyO$B>zepPDm@^I1Zmg}x{?pqghNzih+>H4ea zul|?D-YIrg}t_B zaQe?4?BYthyGRz#2zbZxjiq`j36m~_xU?vInB?#btn)4dHnD$F8DQYUPg-c&wVepe zE7(vB1I8Y6Gi{P0AYlT%lzr_#ihzav*Z1!zk0pGgSILtW%ZkW7#?QDHf}I34L##3U z^@~t!s6?~x5^bq`<0#jcuxVfx^o@ku0q9?*ZeJKWy)UM<8r7z?`n5T)JUp_%i3I(F zEZS{vIc3{xFL9HAe^5M_7BXg>GKgj!_XgX3p3|D~xVcQXVZ*v8_Ot|?*IHsQntnTb zX5tJ4s2j;_O#t~hR*=Ec^V2XB2YJl*sjYpq-QRuG8ERFs9J za)EA<^Wu7htEC6>8Mx8*ny!h1E^2SenXQg#QF*=MRMiy`{rK4U{7NAgVx}x66j&0C zWl{g|;CFTJBW5fmBH*%Qxy&JxROx>wiaoXy*KziomL+f0JSN;QnbLiQCQEf^pc^Y} zO*o+E))3{7JE3}mBNN|53rCYZ>o*H?zjS}xk0fwaLbkRRI+&enf-BOk!I;8Hj6g~C z*FaGIAFQ<#Xfsx;86F|m4syumxQXN9UxC@$*rns*A1A8n6~fgROp_lwK@>WV>r)dG z&|7=9WN^EBEJIrMfVBxsJ~zEmafS^BL#Cdfs!ms1Ja3(;3#Jpc+%Q{$6*u_n*V2H@E}ze^_Xc9PBVoP;5sCbt7^#anK#PzROii)tga*LgMV zhe&2+J|vw4o_u94^R+mbe@So6a!P>nEeLBZzZHhn{1|V*{3FxFkL`$}hvY(Esx~O} zQ3eb?T_20SwCjfJg8`9l6&D$5@(C9YTLj*J|HZ2?;QfCNroa6EYJ0W+Q`_tLZ*7n5 zK~o+QTy{WZ50zL&pcnh)n+p!Hg?2pUSpG8c>Xy;xm6tlD5g#U3odS)Y4w;K?$e+TA z!p%j2nn4HwVZBn7%G@fG=bhtLToMh}>1?gd}ozv4pVJJN+4Oux5S8#8| zfk#jrOon^|5$?|BEz#?*GQ*9FKvu7^Wt){mJoahG&hms7=!-I|FMQ!b?i&a*s|ra6 zRVd^Z&#wjV%67wyeU+L;k&4!5Q$j`h*iBu zw40OZ|0m28jF^H$BgC(2Bk$K~ODWqg2`+}_LRa+r9WFyrQ4%_~Bg}5ywDACI zV#LR)(tkp8Ev~xM*P6k^AVe}wGynXN5s?2}GWq|(ha%~L-DEvb9YnvX(7!eP#*2CG zrOup4HRN!Ik%bbL)pXL+*{v@B`zra5k|A)mQ zo6;(g&(qi>Sp-xh-I5V}2L77i-6{$U>gXRpuAm(x(9<`R7e7Uu&!{Dts3BREL z3j9@~@z50T3-@L?36rZh(w#43uN`S2|D>+rR`RUwKjJ1HCXt?mDl|L0B94V&~2SNr>e;dms4kAFim^b-uKCodV3 z3|g}wNMh~dsW!#A7gM}87oaBs=j1|&-)uNMjdv-5wi1|ZQo(ojX|0_|o4G+vaOKy5 z=h^gBoB*1`HAUK1+N~?8A>ou3Ynu5;VX%D2!5(&H+5%vI-?}CGM#AnoUA7uP{s9n7 zsa{ysrOFMVrnknw=_MF|Kfh#)p~v1HXz(NGYsJY71qgyOJR8&4wZd<2N-@9!%|&)S`1)U+77EbwqTvEoohV?{p?x>&c61wHSgqpC>^>g9o$k`QIpEj0#s~>|07e3D zJ)fKNKcoWQ+8d;@-GEtD%`0zE*Y*`h6!4kBz%3agxYoD^0K;Spr~=X++mYYpEU?nZ zeu^Fno`5cME-1HEW|aYOjYL`mziC9@GaTO7v-|bJ_)7>TF7RRD0}|JeAd7LyEy z^>02Y`ndC%$5uqQcG6uiMg_J?C)??ak>d&DaE6kZY}y>}2~-si5orL-i7Gs**ZUNn zXuvMh>=}|9%hYiev5t8^juHw$=HF3bN8U|%A9;0#WJfplb@)qJsulJ# z2^em!O*6QG;_z5ECEzdK=y(n{=vWdU%(U-#1;K6BkVzyDWGi2+GM@nVn0IV4I10)t zE#G&!Azu(!7E_m=4&=8#RysnjQ}Y3%3a=nA#iG5Xx?n&1$zEg{MIiMIT>0eB6;$MV zmWD6mbSTJH19Zb?!d)agk8B+cpA3&bIGUw)1ienncaZ5bK=)}e)3>&ef=w_@K@$-a z$L3qdaprc!%2Y?eCS zM6>#E_p%Rbf3exExq}9~Ob?4pU`vEzx{aBH3c_Z*Eiyl!er_1aK*4X>x;LO88o5r* z4+_rQCn~A=LBW}+gWdP@M>=5D?*~F|Imw~e9-+0G^*_ePQ4CBQ)H^A%1JBD7WSJqU z0xV2Amx0Sbo8BxSUY10#WY5oWAcdciY|f+nmCFjM)0V1ik862I8?L(82@oa-&FjZP zo@IFQd8h`}<;wG9A*6tVGE8%CT;GlO^C?r9$ZZ01i54P{_EMKwE!xElg1MWmr5v0w z_pu?+&c$qxFCSs%lk9e3?d;~m3+`(L-l6vlHmGv~AH7{ifaU`$Z>i_7pJQi$c2o~M zI`0f$4!>sm$2;gz-mN3pvv@C)6P7i3<7dE)n+(G_D6aY1=L7Rosy0{5T|{2ie7BYx z(uCHidcP+77ihFwn$3C9n%EDF2QmEyzGIujkPD;nKOw+1O6xMb40-x}=1)(^lb>6S zAODW9e@y&674l~_>+El0kMPGoyGMx!U%?3DUtcQ|f4&0$>toR-{MX8F(BJ>-`$kcu z@ZUchU+xx#d`$fHWvcX{eqzkuhwLGLj((s0v%T{-^@YmD*}wZgB8ByT?S06w4|$yM z_eEpg=HH(yuk;@ud>9x0v-`D?eN+D=-Q!;$U9TBUeA4kGbt=@EF^G>>J|M9A1>KrE z*EEvFumn04IJf|?d3Oi!rbl`I))}sD7zfCbN{_x9)b!~0^z@R|in(k5l&0L&Y<`rN z&>-GJNIYXfYD+TDaedJK22|W#kLXEYqn6zpfDLnCBZPvsBvM&Fw_A&N4pJnnsmU{pG+5FP!u0?LUsjDJR$hAba4>i=ip(;& zdTDziKpRHAJ`vAjF5Cj}0Xip?qzulox(1=wIoGnf7NgST$aT*ua@{jU4zP^aTB7(B zqY42>%qKN|C*zg|SD`x&+>w7~A6gZE9+NZ4i~+d6<5d&~!%pz+0IrZLD( zW*RofOv4|$bfSUGG|)BdP9&y5>*$Z23ZsuE;Y}*aWEia@BIB9>OJ8U0e(KNKKNNJ; z)5T&ZnT=_Oha(dDNvvZFFT~AVImETH=koOq(9rn9)bSw4KF#XIKT#4CA3lRtM0^WlT*36DZV$E zo76an25h7r7eJ_{r%SsG`c3OWpL5WkZzCgp_OwQ=wL(e;8?Ob8u>!!+4CEj)zbrUS zaVOk1WM3nZz$gV)8}O-3x&!gyHv3hT2aZ6i{91bfZl@~Dw*X$B9XU5Da8#qn4I2<5 zm0jI$^F1GP(Vc}fE(ei_>4QuM+;S+>%cxHzRmjQr(tTo&a7Fw5vC1-70 z?P-q0T4Cj+h8(S+zQ1sXFVYYwrWCLcU%q~S^PJ&+Kk6=aW+1wvy`e=GvCc|2+l9KF zRUSZD#xK8gpDM^E3^v+#)j2bG$pRtLjqolLF{Z6IE(baavu>~-`xg7jr3gCte<6w+ z3-6~Q;{evS&H-M&r5kqT;p+XMsz%4_B2M$Ac>+jMWc)DKC<9x)@;456Jps=1%Old% z0vYla3rS;Tmftoxa1{OTJqFDB#gwwS*XZPrjk>-lZED_gNfFbXqo5sVgWL`jI_ACl z#K^D}v=_0NjCoLJ5z-?c3MPHu31c5M`tarhcj3uVQgX8~_Hu{}rayaV*xT@yICySCKd&TbXjN9 zxz^E)u1DlkPio&XjCAmqOprtXTcfHz)l9P|AZCL!cH;IX4>}=Vk)P&7^MZBx~<}o<`R8xe@X{fN*%pJ>wA>;~sADR!!TQ z?2F75hW_~5rBCu-fjPIWR)}*+2CcYsZiEPpkTp8e@I?PV@Kjbog zDn6cdKgmt19(Irm%sf`{0I$S0y&8UP-RB*2BJb7~>{*l-=)gX01rkp@9j%FQJxNuA z7u{S`v#%-w5G*pT-@w^`aMNE{+VpinzyiL)0~dYz^4%%81!&t)0A1>R@NPQ`)VATV zk;f4fi{RacSTMgUZa0p@5wHj1%Pe4645kIg`|^?;2=}K}Qfl)W6n?*{!l4<=^WxN) zQsE`kH}W=$9_wEMzQS3S@PK=o61ty8JdAT(ul*AWSnmtq2gtd-a$+De!dOqJ8G@{k z^~0^3s)8Qk(}Y(DVL{@7SQ#k;5Fmb~L5v^+G=p>l+@xnh7vED>r_+n0#c5uDTez(R z{T4*JhX-!R;bBAoxxIG_JICoCQ!(WLJO@VWDaW$FP4N9m_J-7M#=T6$*;LNu)6!s- znd`mf1QvdCzpeOu}I0vG$pnI}pws9hhLsh67ORx~x;5f0=b zX8S*ARScC%@->E`2=#d73YXRwsa#StQh&;p^Af6F!~Qtep+Um+`Rd#%SLWs<(!f1x z3qy6Ix%!g1gS@R$(+yg)lDURb#aG4tdWFhBMxiyMb4*g(n1#}bquV@c6>vp(iu;iC{AkIHQuuk(=bWyIL|p!T{*|lLoqPs^Zns`=N)T&{heUv z#erO6iI`HpE$&4fr<7pf=vaeM4$j2qi8D^F&@FB56hX5Izk;>erE|m?+D@2Bq_gwp zQ$B0Lqe@IVry12lnF0)|L^+8ps&(gXe>2hLM_BW>#h>s>_n5+jW*CUD2I3iSathaS ztn8Rx#09JQyY;U5B7G(v+{8glU9Fnc{NDuJfPbvxXp|F}5M+q2Fp!xr69+e`8t3S| z+C<-7dYRK5+BiNcGrQwg&k>C`5T9HS3Wj+!aokQs){LE zV{4rzBj2b3+rHaX216DH%+SyM>ePZk zH;gF$8J*}hyWyR22BXh=)_aePFfNt0hijK`f{?`rPR=8c8qNGe7TFAjFzUlKeK!M< zb*Yz!EUJ_JGR@0Nk@fz;Md-p z_mY-?st!VXOBTZ3ZrFhZFpz6qco9x8E;^VMo}TZWD~+5ejl5x1)`Bw$5up{l2?=%v zN8M1O6`JramBu-}Bk16I&S<>!?9Bs)MY(e^eD0TZQSTKW>1`aeE@aZ{Fk59F-=G5a z_B*~+Hu{dhLS}D5V5;{PUck>&Z0$g@qN^{`tS^dMX14n#18aEdNjRwq(gwEwRbAU9 zrwonGVKq#B1r9CBf4?D5O~vO!Plyu#(pSKZ*y%3bz5UYqC1Si&j_d8)Q&nHbuRd9CPa;fv;{(KYMI6Zi}-b8k18ossq6Gv$xyv0ckEEa#LOs8MH(4I^@JcaC{ z1}72}N|#4I7vvk|buY4%7}Jm~D7Q@$aLDX^*@SSFZMz7!xt#|dHO^EbhFXTu-3g)< z!DlRy&Nwo+SQo3G@8pKN=PZ`Tk28s+o(YY+;Qt5R=*?hHSdQ;MNnym=hIc<(ILdsU zi>TU$f157xPkR$WT)v=4i-(AnI8&{`xMwSmdOXMpat+ek3FI1F)&S>F>N#u-g;DS@ zXTc9x%`G=E^{evUHkU9}^QHs=YbdTXriAS>mXy=Pv8al0+XBAllCu{UGuv71Nh{4P z3Zxp@Ssr`fbm3epjarOLlL9|}wyNRM5EyjIY>{lC+s1_x3U?9TM4b;F=8DGWx6gma z-{5BW#9i*2!p$&8a!opUsWtL9AYZu@J(C&Jup_+}57EqPm&G=HWeJ5&%|^kT#L}|G zxM7(XYEf`7sp1?A9Arn8>Jf&$`&gYLCJ$zMo?*PJ3h{&OW(DIHQL_yk+cQb<>@7 zV3nsczHH(x31&JcnMP>j;5b@GSBuODJZ_|CLDE}&px|9T*{V&)OZplJ=j>m+A4{a| zV;ek4Zw-RfU&z0E<;$CS#XZWh!6x=gn7O?gze|l3BUdWy9fjXAKfWIW{qnZX4mZJ; zM4(qKJ9yi$oc(%FTY~#puSIny z2X-w;mViNgX0;Rp35O}1hsa$0*iu^2HMK?)!m)QJEAutPgfI-j`VB%IR$JIVgZ>k_ z>QQlzH0|8D!owsTz_B^8|6I391skP8jp7Z2S5T^$PAL$#xT9}7Rkx)2+r}3=3TrYB zf59S1J7u^EhX81pNk_17U99G9uZOCKfzuia5uZ8k8J#r0SUsQH1lRq|y+H#BvXE`* z#*H#x;966)93D241rhBl?nsL0H7nUO0~(C`wvMPrVmxH@;7mpjqC5aSG{IJC#K2WG zOavTSJg#G1fkS-o!ug!n#vs-ZHv=-eM&|@QoJ1~gVzY7(AdaieQpG|nK&T;(LoIbN z%v73`gg^+0lR{wBh1m!tq+X5b9We?9Csg2fo%?D}Z+o>ICLsu)nBN0-bgA|h9XHPs z)mt&5DkJ!{(&@u5y7i+>r)p{jdA%LlII%7`TcddJf?60%L-LvTCX;GvauDQ2C{Ybt zncA)T!4PMd4vF(KRwA_bRLOO&tT6j-^L3VT_eA(ChX!QNG9qVEZqT7~G=d7&6BYkS z$aV%Bc~+K&Bgh!ym#@`=WF+A3>e$BAY1tZb9s7c(2`qNsl*O7H@?vk5XkuuQ%$PSG z=)8{At#JYWp6$DqdQSYd(MAC&|-kj)Qn~@xvb+a*h|-?pm~Ocd=uSb;-O59MpdHE-OY#8c&NJf zRD14u-mjnY=d z{nqF1ddKp4$7&`Ie_?V1tESN~c!Exz1bwEc+{(;EkpR2(1MH@)kUaeCf{~b8OCH5S z!MR{m4+C9Yb8tUMbx2TofA`qn$q3MrC=2P^~>m_WG_9z`?RJ9uKI^GHJZimc?qjAUFsOpW0Cf=2X2RN z|K^^>2}t~Xin8Wh+*WR9cPH3+u()Tvc;`KA((uedrMN!6@`XkgF1qPD#zVgjGpFCo z5uSq^7bosXwgR{yOJE4`^zioF6~BOmGkriA_2td*i4ab-&UQ@Iy}MiBq`Z^NYH0E* z-3MnL*|7*QLdG8k{u#VQRXt_jV<~(mF1kw;90W+vccUgssUAo5PweP zn-F?ynh3C6uY|A}ix`4-oH0J;8pu9k?Y5oCzuJ;bZYLR0WgdkJ}e?Faj7YRTw! zVa(khi6S-A{WUtjohyhYuY^PC4NP*9hU?#Skbphz1r4vOU@I9CgJU(mp4wXwK2zOd z6fa5uA8n8P(Qx4kvhd1{#oO|0&|?pTG~f6SAJgZ#Pvq;+-Iz?M#A$8U+7 zJ;E8>B00#&Te7iB%#PzcTG&uI_=UK;dBtz4^ZSJ9zG_ME8bNLjRxmbMX_&6 zFO!pE?uY1j{ZM^jO!I^t#Xx$QKRptghr)jLD^NEDKW<+tAPjkEKl3$6LG`kk1f)>fHKXYRDwx9n4yw-#>d0A)jN@0sJY2xG?r84-!2)gU~0R0BQ z{Aa@d`LyDp2U(z(;q%4F@MVfmcH{)>XPjX#un03M?=vv^@I+1TgN0)1o4wC(L-8pm zX(jMo1{&3hT;^UJxeQjAiMML`z>EO4Zwpsw8{K5OK}ihl723(8SgD)V%K1k3tT3-z zFPo(P^yYi=^KGH_SX5r!N>!I>c{uh1y%j5KfumHq;&q|vqCoEwl(sW+Yp{W^4pZzK zRsXG`82s2(whlf!>9d7-M&*8U?lxcX^@hOsgD*vA_5S|)^=4;vSt;>{{gbY6SF3W^ z3#)Q@o(#gLh0?Bl^|}_(y+8{+wI5OV-+fN?>AL>+kr=-^FG=Sg*M9j@8Yw6u$|T>c zQI;FYppF?CF1WjhvkZHBLa0lMQFvbwBjkzkcx%;UWzY*+?^VSQlKM+Qd`P9f zFF+N7(fISXdl8x&4eyGN5XD(heot0zT_@bIa$Gt|!J+<{Bi6;lhIf?Lf$y34bv}`r zKkgOZ3t#{VeB!uq!7i=ar^@ZBaKrnN|K2UlgNLI{6hd^2!o&QO2tx!kMqnUTd5@9> zMHKI0p8!3J*Gv9X%>R`clW=$aSUB_K!G?50lr%>7GxsKd2Mm(?ckUF+-?VMbqTzbR zTsv~5BvcGj^QRj$g7_T8!39~8sYk0`iPfRusorg>i~`D_UQ2ls#^G0U&b zxfciLhZqE-^2FD&HKCSwiODf{UZp#bzQi|c9fDmZY zb7ydvPUq{G6m)PPY;FZ+HNPvW5L=b0sHO+j2dwzXh;FKCjpR&o9VToRdvfNL_W(ag zDyy_uRZvm-f@J}ym~tCahb3+^In($mr6e6dK}&zEsT;pZc=P4l$#zrWL;o%Gh(;o*wW-yU{I{YF{0D^s{3c5fU z$v-~=M_5W-e7%NwBU;VR0`T~vnAoQz#1T8M2q9sxy33;Fxl>cy53m+`N1F036$?eo zRdVyS^K~lbr*#|fs<_XzWJG|bSJm39EfQ8jBkf;tStdNsm_2i~|ESe9!Ei| zi}>3wc;@bU4BvXp4+Qu;20Y;N0KQ>T1&;P{L=1m(mzRC6)8u8sS~j>I^BQ7G;B;B@ z?wRMlZ+9~w;gr*-8nI`@iMCj~R@>3Vi80ypD(=#toMUmmptqG#!+`fjy%nt|DjTeU zf84|`Tc7_hZ^HZV$Cv>>5E?xBc&e*;*S-&o3%h49j$Edp3)kICB5MK3zU_W6n>;M` zLsS{nv$L~e;J8&jS+kA5&hLcYGoJKYDnF_I2moKsAXOz5o=LGVhac|k?Ut#ptP2@B z6D-i{!qW^rX0yv25wSPC-p}js1X(ENmUxl4Ko*G$M3^Z~qG~8Gpyk<_K{d4rqQTOX zk1FrkFlk+)!!yKIe4|6p!fI&WnJF86kbup*tju`1rWSEUEm{EG>eU#zS zde`?X!@e!Ltxt@gUO5CZw|K-ZQmlH@Cmd z7lG!O$H4$CFHk?l|AjKq4%b%=FvBT+Pr(5)W?(P_`w32Nz|Bdt!FlvQR|mu#TpSQ{ zQU0OS1AgcDC@uiw)%z(YRB+S)n9QAYI=Lf2BzkU9)qd>`X5XNIAiLRTw(SVl^LCxC7cse$Xhr3^2f2i0TVP|d4 zQ7I*P)upvY)3i3DXvif@?;=qEkS{SAf+~>f5-&pJ*P&IFEpEzkqB=4Jm9evj(|m;d+obwRhaj|A|ETh71^eLjx#VyBu%AT5{y;8nRvDk=i_zp)hL zc!;GpD?YJ>xT9W$gH<5HUDXQD zr%0=mV(2R%onZlq$lzG0b$~ZEvyOc``h9aFN%YYMYm|!IKHA1JEILcX zqMq7~nQ&WUcyYzUYk@ezK@Z}A@|EFleV0p)DCNt6IOj%9uSEw4geo8q?wUCC-JzT3 zS&*+vxM*%Bsvo9jK zOlpg705^x?d##PM8~H7@zx}^GcRX}QtU3KM|3_`=!-iwH8&+0|e}Jgcq?&Ip-UdP# zQi}sAwB!7iiu(>};O}<`=9P6p(^&_g0tn;ZyfV%@Y-oNFe*+kOnJ{flA_=>x5XAy^ z(2c+ZZ@YXZn#lmXZDaw?{(tbmOs4he>VLACNnC=e9xqTIkp|m$UWL;#tDLf^QV4mG z{9Z{?QG`1<6wp2~GVyG@D%r2$D{CCK*-O^o~}&Jo99 zCA<`wwX3MkonKmK>iUVW;?H!+me-N+(z2}C5I?k_&EpX5#b_@0lbZ2^Kx1*E2hKNz z!Md+9xk|K7DNB8k-G&^>r#_Z_|8Fw|H(5m`FdyuGrqkt;No1REGnP?9y#v~y%^rnh zI^h*v4OxL{4YJU!qHvc7!$7O!yzZ^J`vQrtdnR;C7Kjp7A4Q7jTgYwnHrP@dNskg; zw`f(W>TwIX6CNn#7al+2G0U!7-*53!g&IW5`aRLE6GV$Q|E;*J6&&qj=^%=p7u1Cq zcHGQq_!DcZkmCgx4}B#$V^b$vbprm*0fPFdZFmSpA!Rx#m$^}mDS|A6aj{6{$~*s} zKElwHfLr9oxwNHQX(dh{z$FKASligeJ4MlsiH=IklUHWIfLK9vcM`|a`9s$@XaRdc zW9JgkiE4}(DTFNlQOVvfB(DXMOHBSF0U)`2|4(w!Q~w&rMS4%*h661ctR_u|+L3jc z6`*~O+I%k9I{w?G3~I-*ii zaHe)iPO~B#6l9A4a`TJ7XFX@ z>F4=_sWjhDJojb&ngn*Dm90+`{8V}8Mr)>T?IrWBGV8>ssumFfK=9CMu)K8ihn?FWpVF z_Gm-|>l+31hYMdzkfRh&&IcAmxwxNW0irswyX;mTCI0CxP|Ab< zs=M@woCSad+(B#X$uAJju_(I;pAQpt-XzD4vR+U^iv-2vu$rX!l5tSae4J~y!@xPMjSh7 zlf2%<-X}kyJsz^jV;T(Zg_%G6yEykYPVnz{cFg=;t;q1-T5ruk|Eayh%fp}C9IG@J zzng)L5&=r&WbZQ}K@=&g*Sxv0Z>HJ$d=(`6@a|`czOs}aWjRw7a{OAI&b@O@)*|iBDSEX)Y5c%UsrBu9xWF`Hu(x*P!iXr4`2?n8%(mBi;0SD%6%rdQ zh{JqvrK2S+BIePM20U*hoSq*%(V94~xc97V zxLJbT;vDQl0XtoUV`xAl9wJ0l0#Xh)z8dVPY8{N@i7|LL-Rp};s(Tt1UQ@_sO7DT0N*0T1pE~$%!XNEk^pe0H|N249Ib2rB!e*bZ(ro!T zFnM0_(hww&QjGo;jbh=XgX~I~W)+{@pAUbnJ}kQ#@$1#^F8o-7epW;Sq(h{F z@6JH-V%Ud5O#A}(dSHLY%!57wpt-Nag3gSCaX-mc7wA@-$uD5h`{Mi2v}gnfYX{&h zmU@f459zBLE4NCq&tX|I!4Iwf{BYtvq>$~EtU00w$&eDN#hm1ApNa{9hByEk;s6Bb z5-wrttMh?hHXINj8+Y=S#>QXXMFXr_?`*;hKzf&O(GVW!gw1x}?wfcZ0K52>Gug0< z;-E-<)O8<^HdTMZP&t~H5MYN<`(fXKaLo&FR84g^eUKTFrRpoh1fmNDk_Dm*eCn_B z%x2v*yJ|$XAHey?m%unZ~&tbLQqIx=#Qk8i#1Xu z=|VR*6+TEbP6xvR?F#2c+066KL+O5h55#vF(XbBc6?!cBC1ClOBlNN7bE47!bQ*BHwX?pMZOr4NEDGSiDbfD%MWLq2+9k&;+xk-#Q=*h4ux8YL zKYY(O$v8wLG}ImCOh%VFkgymAR#uR&mbDU>RF#z5TXS(Z&;RzO0J`Q&#;yF%JjKXC zFsFpuePh{A*GFBg0hr^oTEv2Y%<4rU@Q!Z%e`#@|7Q@RL7;DTER7lAG&uo&*)qm%V zY!Wl2!M(NWH^%kwzy|UMNN2gKT%l-Dt|z{mEx12r2@b&*?5|d(oSO}f>$p>&kUbki z_eQvIlUz;avGffG(GnE_)!nb*Hj#!UW)x~NHihIC3=T|g53emAf)WqCrytE!{ktp9 z{5hG8om1ecE~2_178EetNZ$Y{rbe?%6_35zyetqA^dZrZv*(3sC1)2cb;)(ZpVD3> z3BuL0o*uI)HyaTc5Wc{j^J0Ng>`c>F$x;@kYXB~wbKWLS8Xx1B0TTMbPE_@)tZN+@ zIAenPfO672?K}|Xv?N_JVeR@=#{$AR&|OFuVc{R7oYfT_IaNS7jR%GxNy(sH*6O+7 zcgD>ON>{A~4VyzsO#KxL^00H2bhd8p%zeOAu?kETt02cYGNag}nNdGl)J-&1IKpsd z9|KkoxH!%RBs)+YWKFy?<*&Hsd9Av|s*6v4C{%jKtZGEfOHgGZ_Q#lMf46IGe3Rt> zm-*E#g%8LOp|t7EZcU{U8D?7^NE4Rfj}y^?)J+6GwgCKK>Jc|L4$SQRdj~+CGO7ME z=L7;nN|_jd*K-49{ILwYHqUVPYt2`^%%m)jTxav1F86p9 zB($%VZ=rhCl?r6Cukt_|sofTujc4mer3w?KFE|IR1XQznpA0_!+ifI;BUzrC_TvKe z?M+fAS@IeN@(#3(0QJ8*m>(Orybd{ri!pAMdbv?^AI@J=AY3WXlmH~k$J6V<8()4q z{R2+`w@xOld_KR0fi#(9 zBPsYMkNCi$#s(ya9SuH-fkNTOFVZ^4!g%!D+XY21+;gVVk((Cgd<-06*rl|!zA>d9 z@dbSmKA$R0U0Dvh!yZ#f|Mn%Kb?hYd%sN&EtYgF+3b2mt60KvpWd;##H1hBhd)gfE zmBgwgVo9*@ZH)_+M6b)npa;`e=M4lZ(SMyo|0i4|W))3mtUiy-`Vcg}F?C{lar1~K4HIlE!50VAG5Y12iQG>r7_K|r=1fC1hk`#_6R zOi7~E`6v`lG;Zf#`l4-FhbUeH!MBuV0Gr&)qQTvDOSYrj- zlu$TkJ$$5a2uq#jibD7klG+Kmp&Ew+McGMdyh<9a^O^#8!UqH8*WSHfDGUQCWxmTD zs=wXSR1ll-YiqZLwHcN9agAIa!2{-Gz1T!#PPO_x#Nc5Cf=6Aw^-aS=GkSmADq~+X zavA(%6s?7+18pLQ=(Z~%gb--LcMo-7%Pd2cpnLK!4X?0vA@MLi-MVmY{t+gd|Cpu- z$?&arBFn*=DtuXbI)*NJ$cQ<)7uh+FGllv;fdEh?Ie$U3>Wex!Xf0A%*Rlm_gvZRF z{x~R6@bNJdh7KZ_I3G9B-@GW$o{n8&TYveS-JYI&IsaO7D|mn^I^diQH_J_xWcx=a4XnO}Y*RLuW~nabbk5DLBcxbakkxAQ)$+Oa9Pu!OpwN zO0@$BWB#-6e`?sV`Yf`O#NdIGXK`GT4`Qu;;uyL_^Tvky_K~*s>bvNwfD!gbDhxD% z@96{+X1~hrvh{SYh4Eb043KQ>TRFNjb|l*BOKm&3NgsEN{tcOucSffRg`&TI zfbj1d!AtsDM5=kS#Tk-tb}R_zICUrEfvc5)JmY8K-SKZnO6s_~y~%Wf zlKasQj4AL`+;v%SNB(RChztc8?-PWdv>9oGe9T6Bq@gOHBT+a?{8!S$aAqSAhh{vJ zn&03;fdoO`S2XzA;99ywAp>dg1re?akA8I=-ER zNUuXyncydOwJW(YxLl5r%SUTjAz8-0PdUNGo5KYGR!O6DAn6!81RKvNchk_B4W~%a*968LgL! z>!pd+$8((s?_9^&xp2JY0%;ZKgc1{&*f}pa6zqA@KoN*HYTI-!o*|S=nd>= zz=aAxXP`dRQd`=*;=V53il#9B1tS&y5xj~SyXjHwN8e#6G1Vud9?ya73UDAX44>B? z0vV6$At#TSO?jOm&gdk8@^md)U?pJ$X|0*f3(%`2N}C5}jQ-EaAjHcNX$%*r_zt$k zMQx0b$5--}vQ4&YGyBnfR6{EAL#n)a62-7@=`O0IkdXCxy}pa^#L-Ai2dj1n(H;!U z7?5OzJ6Q!@+*uq~MczgUK*1=$qbB^HM-A%#?7wJ=B>smp1YNbG)X(Qe|6+J1a~&2+ zN89RXB0S|Vs95@8XTZv-uLd5tn1Hn3QY>yq#A&y&TC?$2vUm>Y5jxT=XYVVrOX#QC|HBQO;xSGOTebB?k2&7mtZ!PCfWV(qvv5p$+EIxIV3Ej1-TnRN^ zs0K{1X!bSRyjBpr<3c~&S>JoloQc!VW_x%(qKv-SXI}EI^8=BQZe*upro8_!=L$+7 zkeA3snmiV0D)?~Ufh_xtqP9%!`PxOS*15cRKmYtB&_5q#4N_N@JCxefFa)f!ZdqARI#u|^Wno6QB;aW8Cks$rV>7A? z@P!;JlxH7i0>S?Bg{+CX@8X$SYGgSE=?3K!!qa<6tX^c%*)xiI-R5ROb%ipe>07QQ z;g6H0Wq|XMD4#f|^hN^t#HW?eZiKn(0_M}XLFc9}J#dBH9Ogw|jZGnCAAAf$*)6@= zvg99=&acp4hT^V9865Zuq|}@D;0KS)Z%So8Z!y5rr8O*S{ovckwlBlD9&nn=Hk3B5{L0)Bz735U_G_ozejkcC4>|8~SG1j*av2J2( z3M?f!G^=X7_^zy?xc^k_Pb(SkI;joc700~GumA&8883?p9g$$(DH#(p969NXA0uhUVz~ANekBr;t{P|Mjn6^EjFAtl#zHshDS#KX zfy&|c{5XunA!b2ef^Qr9>j^VqR9x?DvpqiBY#=ldeRPk{d~|A{DRy=Dw)Ko$HCQxc zib5STf!eovlG_;hn<&aezAP?hyVH}&g%kNLWPg|M(vV=F!ohh$h-kO;$9L7h$aiIy zDGWElGs6UOq%mCiSN1G^ei^2CB7%Lj&dknT#*uqP?KpN$)3+jhE6*5M9gn`ueC$p6 z*jofz{}S_i5;GvzOx<^t53*`W^fC8$`5lca#PBG_{dw`G%LCnFZKCU6_%y^3QQ>7I zPA@Cf7hScWFUq%FYZ&?zdm<;F^*SZB&X*mSk3Fr^#)#EFby5Y_D!ojs`#uU2Rf}Mt zT2!BT5j`sD0j`h(q~qqlio4I^5sli|EI}48r31MRlZQy9wM%9t&s&zlpT4UNwc6;N zeZwF8PO?*T{K1idRl>Lfg!?Lx8TM`JJ7K&w=RD)bT9`7a9-8VOu#J~(diEuK;7FU6JP)*R-6#-&wQnccs4H5WNQz02WcQ? zD|r%G7Rm*La!q%8sKehUglE76zC8g;xK=h3ftpsB)Pel+P#43$rwP+G>pFPX;qtf4 zi=>|@G?D5ZkCNTe9tghLFT;$qhm`+Py~&EZ2Ifb>O^O1?$_bd}Z)=-!W)?-QhMwgS z=W$I*v{N>pS5hd%gY?De=?razFdP3oAv2aX5Ka)=<5t@n1~2ir%BtT>ZI}zR54E7E zqGVLRE{$Jy8P57{Vrw&eW=|DnvE@de5k+dEh=7$s|0hMB2d2yaeCXi!Dy#$L!hwRT zzI*ON6itb)_!apfUEVC^vSW{C%Nd~gyY+P+F+`k`DQ?goC;CQNfNxZSAb&hGGeVTH zKrd+GO;30!_FsL8rhgwX#RVKjR_(jQo1PrcSvEgSk$6&fZ(W1eS+e&5MDYh-Y2ZuX z>g6pT6VVfVE<^DMl6J!+&|FdPz0?NOiyKWWGRXbKfhHCi)B}sYv&|Dt4ad6nTx^S; ztw}@Ne-2e);84{iI#g%lpz?4C(S@yB!i;jAi?LT+|C@lp# z?QP1ks5<(3hwi~})M^FYRrUGnNc(WwtAG=*_>fBxrfUc5)??C~^Z>7Z($wO@>XYsC zDUNkc>KcF+{ojGZ1%2;iH4j`AlFwsdk}@&&9jsT^AsP+c=Yx9nw8yGb z8rH@vS}&?h+OgnwHh>SnK7VH; zRaJ2Nhbhv2VNaR)MF029m|e9uS@M>f38*x>*pzgQ+)Mym_sxKW6fho6-qJlv?C@?5 z`sNVuZAqAIPKsz}@1yL{gTIP?f#YzL3kEf__$!zRJnW-uzkaVMuD;mdAja$)&^u;q zKiQN%Z<%2$@~lDlNaK|pcbyD$e0Sv>vqq%l&$&D`BEE@^*6$^{O0U^Ewo=X}yeOpS ze8zfhXQyOYwjXeiI%yZ!j3cksulMJ+R8}~y)u$>RoZnPXfJX_Hinq?w!jM&DB!E~+KYDBc`48wTnC z)V%Y`tkelVt9H~itVm6F_wBwzI2QQrqC%@~_XYQ6OG@*Z+R-SjvxV8%rLOJfmiVVk z^cwan`KKgNYL1z;fAT`0L#HKb}r>o1Hp2Y=egE_94Kx8Urv5 zo*E-Vh(WB3ab09)+opx_4* zU%lRmeOww?A*t1fC8TuS!)^su{Y@WS-o)k03;ygLZtYoSiv{L1DjS!$1elQJ;-@T< zoO^99#r|X0l?7PIIJAbOb$42wr0%pj)F?Sd)ffJJlocU6_Uqk2366rY`FY(%zHgWc zw(OZ!5nWUj8*r1F8pJ8)cxp?FZsolUsAj7-Epj{I>rhc*#{(;=e4`{-MPXfIG}~I- zgPc+fA65Zp4dIz1FBz4TMh}0CpHa=9#jb83ye%U_f4su&ta)(TT#>uZTBORJEcu9C zDKPz~ehq;ZIqdewGO!8jV&k5z`U%E5`i0DfmeR6B=L!Uk(k>zT$wJ+*tMac0Fj~kL z8OvIJpQRPxRW2?YM#Ih!p+Pzbg^ZF$2l#?}o{d$-&L z_{EXW2-18vhIdb(0&KCj-dN6EJk-lQ;cEqR83J<&rF)5r%ASsx*^Q;x2-LsW86kH0 zJm3wd7;~-o1eM~6WT4sRjwW0iKb^%lId?Ku)wE^$S5!LAY%od*hx=PNhKk}Fzuse8-u79 zw+2*8{1d;Y-<$jEA71YwFVA0RfGK||)KP*g(jKnlrLX~}?M`yTta4}%4U@nH>(u&3 zG>Rmw*+i2_%zx~Jx^`4&xb^*bUACsiSlhVa@r_64-NdWjvOZ5%TETaB=&b0&#%e&MFE2^CVn_neUsRT!HZfnrKee;pr%`0zR-NhKIo1uFj8>HEqP6pm zS-^NjXcuM8LO;75rQ2U}OI91xM#Cni>I55lZ0#C{Xe{R>=Uk;V)R(lpY}n@Tp;~~0 z?-ChGS~2F;zOg+Iou_fh50cyX=o%B0vwFQ|Ub1*6wFO>7fC!(!(@M7xhdodfvAQ{& z*}|up5!9y~f=bye!EVwAv^OtmmkX7D5pEG-(JT8C-5X;jFvds|Kriu5 zfufT4hw;+$*KgjXa@h`L&luCaFtPMXj5?uk%L=B+0>dD zM=;y^H2Z;(azHZ`$X`l%zTst5e_LO!VaZF&-}b_3!Fn7<=ZIT|6)$+>irD(t^{pa z2qU^6*iJ76s>hZ3+%u*`bkky3MkJ^&K+$_@>`@}<*k{B*$*{c{DO>c^)& zv$#C2w>F8>PBn4M(Z;K;?I2}rn4{lb@ytfxqGQv$q^n>R2RDtSuI4D!wpUi&nM8d< z*z!(;JyNHD71j@y>bVMunJ{x3jcMF zJ^WC`TEbZNQF57Bp7*W-{5zmLwFt#^*|3R)SfO9p!oD-`%*E0A+n2N^4xYTTENIyo zl)j|htk^JbztKSiZ`Y7c0K5f=O#c6Hgj7Cle-`#{ch20r`BP-*zn=`|{|^5)KaBYO z>3eI}@44sy)|N&Y9)|r~nVweO0ltylKV@1Pe~vaY?rNQW-X!+fD&f-n_sRBqvnF=~ zkiO=;$%(l^(x7-&?##0IL=2o&bhKB+ME_epL(~8HOx`le4rGJd@fOzzb05$SNN&W`!I+wtC}=e zRp-^MDe&eOH)w|u%J;DNhHBR9qQ|$nOU8<%t2w8V!(Ycs@yg;9o+@Y=?whFk2Ujpx zM*CGOn~6bT1W)0=|1cjzH*@Hc?hlJ0cn@m&=XDw;JgT79Uqh=_|F&9Qc~Dk4gR{#p z&#lH`Tp$*a%vD^{Y=(+F)!m!zpdpA&-6A;)6}h+w(#Tc+Ly4l+3E z&TjfA>V^8XYGVYk-J3qpvJB~kDN(G-{B4Q7+a@LY-NVYd27|dE0Lw?X4JJLOMdz#9T5VkoJ*1=hE1xE^fUT?B zt+46)IGi`L3D*=aa_SnFqE~XvQoaG+PG&tm1>M#ir-*envLVAO$+oFP6;Ktja#uio ziMBaEDCokG>E*UKyM$i~tE?7@qHakVTNkv1--dn|uYS&XZqR(9^pHnX-m8U2hAntD z)9QmZ-|qcl&^~9}sUyv5{Zj&HpMx12wZG7DA0-0{Y$C@c=*^2=6o3eQMbCpe4#$a* zlUA9H2uLX=<%?T*DFKCTUpGPQCPl3?QvYbE=T09W_@ga-cJCH3)+MCO@F}jdC}-N7 z@?Z>`?}9*A44xo=tPAYpWG}%NK?fnGhz&$!uYkE&rGgs32bnhHOileNDG|Z3Ryw7sPMb1ZS4k~&@B*d-KTPB0|@jTIHgf`z& z7u7FyQH5`xT^zHTcM%`EuRBFdHAkn0>WI^eSp=Gi>w|JVft;jnmEE^{$bHDodBEy_ z$cQiNT2L|WY8S-_dO0N>Uf~{LJXB}?@hDM<%m9ar=GpvQ$-r9(kAteb^J}%kMsvO? zBKkf$sm8q?w6!OueqHEERu ztY<#@HuF@CQ--J;HAN8}!)$!0f<=nxWMyrqTIP_5;ZxB5a}LWxNMWe8N(z?|O)PwU z1OIg@0lIgaCb2N1&JTO2cMrR!_W-+ue)a%6nkT;M|EWnqEkK zX7*`w+ZhCeqD69u!D1EsqfhM{YWTXVOvig2c!qzz3y-YM(C&FSI7vl;M~qx#zIQ0$ zrZnkMuMmN+P;ht=)OR+DMt*3)K09e~6tU)z568cUMc%WJ)p(b|=CwFBlph3iv0Ay~sX4wsT9Dp966`ELsHySQcvt%6uSg<-Z$1^b2|?9_`P$JM=0`=t%^ zfkh;%9_JX3^U!!ta)CW6iNFO?_#8;YJ||}!6(f=30*P2771>rWtaBy&=UCop`K`m45lqV7#Sb0(3 zL5ArSn-1Raid)~2a>;@ZHh!UBwHwvkTuoeKjs!c})ccf?ldMjpuZ6T=B4FvdqQ*sB zhQtT(9LI|T=aQz~LF8g<^Y4JA=;XZ2H9qFRm*!w%W#IdO82^5JcrKfns#IvJn>N3(6Yzf`NuF-Ha61tZ! zYnv5!pUyo5(MW;=O_^{F+veObQt5PGYkiW6kw8ee-!2`32ahOrU;AcpuB~TBM^uhK zQ#yMdI1Cq5h7PK|(GvzX37SBEJyDSjy;7RDrtx^KZ=KNyy(1>959)ygvXeHH=~6N5 zN&4ILK**Sf#V6kt#Y30)X3 znUU=2NlXbFPgo&+c{ta%^Yk>@2`$wU+@i1JNs6B4)*RCL!=Vk;Ae2j+$!cOJB=(N; zdA#NC%8|*x4+e(`JsoZx@7gH)$Q9h?uHVuR`&>2p)*%_c?*wwKc=ug&uS5ohzhlk- zdoc=Os}4PUHwAN;EOnAll#h#4Zyf6*aiXfxR$m2#krFTlXcgZgyyb}%?s8|E4EzqF&h+Qqib z&n+|jo@O$zA92nK7mC;T^`<8V$L(>Dl5RezNT$pMP2PKBz1u(Pa=&sB4tiTX0^sB` zryu|))#_@GHdg4Zy4OS=sb~l$PienwLkR1_H111*ovy69cN=14Z+ktL=YZ2PvV28B zekigX&NLSyrQc1Wg~P2JRQ|lgDS-QkV_YY|N7ICe|yM1RMzlm z{m*oAO|gqXE1j9xUQy4Y0sBcT_71;angAu)F1%-e@!T;_so@v11gvi`7|Ys24{9l= z2vE>ux)@Hkh~-42R7GP2ES+Tg2s3DwWHCy-D-=uTGqg)d$EnncD&Dwe;A)tEX58YI zkSqG&T0T8PH|jT(YFv@92pdkDu2t zBE^QT?KPe~Q=5bY80Kf>mK)V`0lbpR?rMsciX5jM4DUOTob77}rgVUT6pwwiJ(&iB z09UQ*3k%uhq0P9urWIl^=UQjE+&1i2vHk?s3mzaKMW@rG3lcmXw3E1eQ2FdjUs!mV z!BaCsjHBg@huVHF<{Eu(`33XPzbbLjaiM=X)V$Jgj$c_;Dgu+ZA};BQbhwu=ykx7m z!)#g1SoJHS@BOD;|GCmY&ANAO08Y3^I393mG*5+Lr^3!lAj~rXC<8C9qmn|-k!JoH zpd^19!%}-fs*Upa>35q%ekev-aQN^?L-X&Fz3lslR-w0{JWUkbD-{ARbb@;C5yJ3> zeVzB@Pt6SdpU|1CzscoOieWh(e9YGgLw$F?p}u`AQWgB+0o8LjXrG{pp{DC_!mvk1 z^do4}2bmK6r(?+{Yn=3f6SdAu$&_F0l&vsnq&i&ghic8zi} zg(A`c_A8Tel-p?IgV8H@oO1-}oQT|BXwT=Zk2l$)e`H_B<^|pydTxQGCYQZRqxiQ% z6_Z~I3I>&~40HOUw6XhlVW3FS3d{-ITY6`A_T8~8Fp(EoP31%Jg=wgAAL@W| zGc**W-FP=ohptsATV**uxSX9*R_v{LbZe_~<&n^63XoSMhR;_qY8gnp+bT*m6*7jX z-~m{25;D%p=wb1}usF1s#r%0>SzIPQ>;bfuD#j@v%}iaN1WQx36rr2BbmW=>)zqlE zDGBGkrgE5MUFldE-?&A(R!2hubqBD2WN1HcIA+t!sq7%J-(4MyFe><>QBgksk$qplttgDlz3GoPcSrE9v(9a~vTSLAccL9Ci~5o^ zRlpjmC87I{0eIj|seI1AKcs4v zl5Ez)>QWmui16-%Di#9mq?~(L88hiUs^uUvAsgqL<^yJ&>wY5Zem=4*F2kNJq8kT^~7yHVN^Hv6;maPQGoFc_=XSm(IQW$+$b*#TS%tRO&2jVggD z+ZVXvxVHIpF9AsrybVqpkDTx`!>SxMUG342lpk%XjkbEQ#6T_!vNwO9sLth=j+Slb z+6nKAf>M8JK;ZlJ@qoauTpvx5nU|So0Nc>czLdCv>RWnWxzK_?8j3ids%LOi%UUE=RUFGT+!eXqWyv^zYk zbce{{6$jYQcyIU=OrVBw%p}}DWPrUAq)JObIlk&`qQc_tu#%#2m^GVLG+Eh7nEPZE$_MzS)U5-Gj!!K15v z;MyXzPp33ZiwsSpm%JY>g^Hs-hR?ncP3r#vc}&?8ZGe4W`v9peXVi z`HcGjHeAR&qx<7O`ntmF_f>=nlsTVtuB3vAv_K|^VnpX!stjnn6$yqmS8)aRUZcOh zTaxotV2Q8$(k|=KMrDnuPhm35xhJnr~&Rz`MyO=)Oc&h%tJZ}M1 z0U8QtbYjVwn8JDdppwPsE9ZYf$KAd(c*H}1JdEOse%#dNZVFhW;Ca@!-2r{3#R(OR zW0Yhhyu{4Awop9$L?ms4>@wA_@tzN%`6GHk|0*XC!9Ws#1TQpmxtYFgOVC{)=VV{} zb#?)vt_%Mt1_92Cij&9&c}eQn1=jAx*v<)nsp!((OD)*KQE&pVLL?dF^6BMzk_#FW zaxqJ;=!t~dHsDggb8hVly}BL@SNajNFbv=>y~72DHY zs#r3AdNJW|I-Cjcj6jM@30Hd1UUw0?jimaK_tLLV4@KKF34*q%(j5kL{ll!n?E9pk z?|_+~e`|CK2tR1xDdN8`fv1iByYbB|mV6;xvC@FJ#!=6!w#I49Hl}AcSRvMx2)cyyk-9(Bk^*yJVo>wwE52 zZiMDtqR!&i`bq!#IuCeZB&A#gv;pA*tOH%T$w01bG=t7KNpO9=staQ~^yBEg`WZR6 z17D-{g1rw|rwLvaZuKYFgqb4r?5m2@>&C)C` zq3{|wT`#Jel7^$n7&~exO7s~8fEIA^&Lf+DX2(Mt7P1PWx5qBuj53fOAKt92RGJk( za28?%1P&o83adwS0XqQbONZ@Pvxve(J%Wp7_VK_n2MPncFIL3mFp3z2q9YY^?E!G z^d#)aLV+`kh18x2irN1Oibj%6=2b*Nk?v8lk|k)5O^R+Z(kpbLSNAfNM2YJpg_FQ| zDw_<4J%5+GWGAb_Zsva7&F<;p8`jWH}Y%7R4fh{Gu1y#Nc%Dp5WfRKzaQY9)hr}snU1mQA~;Zfgsq=zjhrNQtV|8J z?iIX(w=#$wzaPg1*Ay;SiJVm6C}gR&d-!6QERicFncGk_lHRmxPFVuqsgrWLh*ZT> zn*#L3>qW(UChjnq+Lyfmd?3!Qvy5gO&Ye%Bx-f^>NNLA-`DLgkTctI=Ywq*&lOGNqDZy; z4Px(868%0B<~e38_$lI*k!k$8_bRFAcPv5Z*%Q**bQ8@8ueuWw*z2jk{(_40TJ)Cg zgVtqp@s{01xjMSTFw^vurvL~q@<-8Q@TJERB>-?HnXd0kIe3XN zFI9JT;}=cj0Rx~9P6qIjxbYBU)rjWPlM5xe#r6dB95cmoCo-RlQ#Y@WuF}Np9P8*S z9a8+S_Gc>rwd1=v@o!oFy!fQ8rzP{Oc0vq93wt0MSkx&GiF(z3dBZlvpjkJNGs`}n zlg_@B6J&exG3TS>ljPBeE=#)iLk?e=*RmzeMlF|UOY(Dzt8vT_vX|lmzB;v(RPog~ zzWQ#f&r}`14f`1;bu#iYrL<-vKTxhvP}L@gSLb@2ng!}-F^q}M_^u{%4=_htyI<{i z>;)b^mScAW$i?!TaE<8s#U?~YPMTWhGFib{B9uYNcR(~ zaRbb?zg!(^Q-9a2QOQPEhvpwyus>YBTV4&iEXNkB!>$1J;IDO8_FbTsH7_KH0nAbh z`tE|rJCiOJN;1Sk5|S)-$2=GuEz8FHz!_;07=G)Vr2{F7+3X)1fxQ+=YG&T6gRn=U9G= zt1tn^&znrBMP@X(;;pyrp-K%Js$R#$-GH=>TUDoXG1tLB_6-JUw;UipL9r@+%GvjYNmdhsekID|fbV}YUD!{N98u5;iWK)4TaW=MZn`RdQZ#8cjfW0GBC z1~!xptbH70vml*9EYTIgc59raQxwOf7rf%&>FL=bSye&-3hV;|9xWEvL(s?pd2@ zeSDG(?WLqbLDuD0Chs&oOHnGBwpi9D`s5CKM~1yq2B$fc5bH}(3y?!$sGjLiym32q zOapv3(>?}q_$TvBsa~wqjZ;1&poK5d8GXX#F|!|C__1aiBK8gM@V;m?p^}18;lMQd zBQDNnXGv4%1hpyx5CVM!9};9Y1UG8dQ@3RGr9cz7B|ls1W@c;xgZ~+!6F^%FPqy5Y zX^F_~C4++5pznBFpXTspe-FaEGrpIsRp1pkj}IW^n`U4Xz7B&v+x)7`Jy$k=Yl;s- z%)m|h{&@qDbtglWT8v0p(2_4ZrceMrk}B{tx0}6}L`Y%spl_F(w}1%~vYKv6ZMUTB zR|9W811wMfKCCzQDWN^)B0>9SQN=;%n`QuvRX;f&oTm42$+>F4Bg5c}r!h*UUF8c1 zEgl(FCGkrGD1xY3HxPmy2mv)EX2zu0l3_F9O!CUrEC13A9@Tkj;v^+}%YN3gxkHZn z#b^055?*LX&nFTxau}E}U)3Ry3SREir^xxehMg_dXyteY!}h($e7<{^#nKC=UGlmW zrRDMsrG_AeU~$}T@#kjJUnq|p8i@fnk>Us3M3MhI^a4DRKA>MrIqKGoDQ^9v;XGf!q^sc;a1fZ+Mro{C2={)tn$D3hw38NKwM!( zoKch^#TBX`uDAx`ifbx2{jN>fFNa(U4(}HNafO7!{Df83Wwd^;D2>52=4H~O*qW2o zV!o(#dBoMs=M2EnnB5dVuI}lF57ttrO(^AgsbhuizHfg;8#=4w(eaMgIy!MV=p9ty znG$Z|#j8Z{EY>k+gJ&^te4}`!d1WX1=4%SrA5mF34#))_`RoLS=9@~|ttOS4^cg07+YUY#9pE7wk{Bd`cm(uE{32qTw($?`<()%vFxj%VCRK)dg znj3CkXJHJUaKtQ`F}kpu(nDTXa>LR7wkl?VlS6SSj4h#{NW?`K>2^(MbkGRKj0Ft z=-dqUHH~?(PX1gyKBt{qdE|vtB0H}|#kma3)xv2PXaHw4u&{FhKvi3kJD)EgCcsR9 z*DlaMqEz70hEm}W@-b$6(_N{j_zG1zab6QgJ*BpDk?a{lGP=*qnAx4Ep;j~DX%wpM z0yQ{j=JnEs%BYL!3xzRil`bh>$kv4jKmq{}rjiUrsK2(T;MVdZRmT`n_=dxwC7?Pc znGdDSolP=OAxV+m8cXCcb~O_kg$ru8llz2DCf73etT_ud#m1+ujHrg)yQ(5}Y!ws5 z#2FR1p`~?p<30q8O*P1W!Jn{fRXL&xFoIca-$cx8H}ffXg8+-60N)=BLpjTwJWKx1 z?>`7?>hm*AuG`n|vcKhq{?`5_FWaMHFPK1(Ow|?M6$oZ|%bhv1tTU>d#qaMiQj@iA z>z_}3WZXCztM9AMbK_sV35)Mb(5?CNNWQKZcq*1nub_XD8Wz2QcW5&I$-uPgGJ}WR zEluNN!nhQg6u4aBX3sJ`5xybX)DRzcI4E zg)>?-O?GSf}{pLhE2KE&G&OZRraEFz)hv#aAWTj)b4uKGgt& zABLW9EY%HNN*#CO%pq;4`o?`%u%Z2X@eC%54sjso%>g;D%6N)MtFxC+HLiXo(>e5O z0C~F*sH~JIgfNII3@W}}uevfG)Yad><8q<*8&jZVgmFw{KCg+{uJKnKJ z248%vkTL|xyWA*R3mv#Ln-up-l}y#SB)ryjt`*0xMUJD5oquf#pnsIZt#0{mEZWgDK6b3DY&<|UfJ8qUCK@ZoM(uLH zIv2s>#;(|_Qeb$U#v;#k*+$Y^PI){X}&p?dL3=B<@`Hvys6=O`cKE8^nN+0j(>R+8J z#OlVbS$8$ozv1&p163)?H>}KgtrYl0gSv0&Xrn)x5+dZd35jk9L%K6JApdS&D;02a z6m60~!1*Y#Aw(?z#3Xm7x&%@ai$@|Za<56LNgCc);KdEa zvFJ9@LE8q|A%HHam)o>Wm@gPh_mDHE5#ydu=G=SyxR(a*g<`Ag6w{XqLtm!{(XJKv z{}ztG41IHvZRr|q^M6Svf{NaYVBemT_AQzqz|~tJ$X6qq6m%y&mPSpv38~Ep4I=2e zHYg7YzSJK=^+`RpF4U;(v;E>T9+jq7L*4ntOd&E);0QS)8%QXOVv7#SfO|!;B?0`t zc^-D0n0o8jg0@-v)D*Q8Fx8Yz51ON@EIJJTmMNaI$|yg2OQi~c20%Z1=k+)gLJuMc z#oi+n3=MiUSbXR7Zk{EDP6&rX9&RX=s@Klyy2C|VFr}qaIr0e zLzklDoK3=$*rmM_c8OeZC+MN?vgsG%IR|5sF2$R9*hjOT#GbCU%p#uERlQ}O`{fIv z05HP?MdQ8sraB{Q2foQMhQ;eLynhvIp4)grA|n*|2022pPE-c?hoDKZ_qiLTmJKxi zBqV>jnln9AD#U)@bM|3wuN&U#bHDKp{b-kLO zHUTxJ>)8;9Vj(6TD4GN)KU!o@{Et_ZLsH}wK8cifZI)d!xB%xXoF{E1KeR{cEWHRo zw%p%HvGv*o69%MCK#jw!FCIBp%6}Ut(#tT4=ZzZO5rf{_Y6>A2i*vBB`4kmbJ zs}hG=#I+I{&%{=05IOrw3N+sF5pu5eBwdAvZs_=1fOKII)YT`!XQl%IJj71`{HY$` zPrT)~s7kAdnz}t0fjDA>RYf zAN)_475CiXo5RG_t#d6f3AyEHh`RYt@>A-7!^(JY!OWjd;xXx%kON>9C=*EG=sFN} zu)DJpsWD+R61!$a00KW~b44;=5J+vkfCRi_G&)IoG&=XJR292RLToD)EAAlL@u~51 z{R;I!!We_zPOoyBWt}sDgn9uz)K3=y-n368-Y~0GFH+RY;x22{u*U~t0qjog&8&9wjV4?zWEo7&80tL&VsHPl;6?`T@E#cwhnbQwL#q!eoYDXn| zQ^@22InQWILd);FeQPy=-HD(D_hiLILQV(>)wqb4eJ;6U=kcg!WH(cD!jk#0Uhwm) zSRhpk;Ve3dpvcfiT80=PR6CJHk>UT*ARkeUl(7A?>k}6E#eg`4F&2=KHPpAjDPS2I z655Z&Ool^=4~^wE<>GFSaq!ix4Mb2gh-R7G(e5FKKd~+3&uU447!EBB`X;)3b)g-8 zCk&FuP+dC^5#R;~gj>~fxA%p!CN+FXQQ`A-Xtert3mB3`#kGt!`eOC_5t2yOfKW4L z=9rI&?>Uz`zr6B!5uX9Zhi*6ct6}rsd5m3Ra6|0hP2d|XEMW%u>9ZHZAn33tXHEto z?)#?E1nE(cXN>X$I*tYn@k$R45am3(sbjC1woLCf!(eHA+nM|lH#?W48ibZ0FYtw> zI-jboS0$gpc}?Cw%2vrY5A&v^@yh(LTBh-z`QOeyCBt1SyF4I1q_BxnU%KDG8rVd` zzgzw}5f9ciAZq*6xGD+ba?t)WGw^2OA7tX6b8!0B!%?q(dBnK2ITLjIGZh$g4#?;W zK&SeO!u1AwpbbBwDWrOk)lxZtH(vc4YoIHnp`vGwYJS+KVJiKd1JD6SBf}ZtfHB~9 ze6KECV=yD-NV4Ct9p!GP#6c zt21|B47mXi0|P(|3;;1O58@BLVt8&|N&p~+3PYm81x|MRn&FDdv$JlJjC!qa?4{Y8na%m$_Z!wy7-p|>xMO=(m@1W{nryqj+rbZZD}iNSKkf+U?c{su?nucCInoiqGDm}` z4LptsJo~ab>R?ITuxLQeB0uC^TgNh=tvFmPJK=bu^)o*-GUgeo&6XD-qX9HtTOrI5 zWBXsiHPGS*D$|J_0FZ4J@+A#FBLq$e-3%nTI>?C#D;|1^)4{n4_)bJvOJHEa|5QD+ zaQcKq9uGPt%2g?$ETD9Gk`)s7_eEEI!a*%bGH%yny zbM)K^ZF&BLwv1;!VGz#gauqm&KTpZI$TD25K6@Rg9rz|$ADyST!5&^TvtXkzsm8X- zp(`|)Q)#+MFFiC9orUbF6sNeSHcd&QrDD$AGB<$40>%wrJsoq7nnL(2(-jiQLIFf^ z;E_e1N;u#^O85l$I7bgL;I5h4E{Fklz4K{$QMLz48~LWtv+kH%5wQQ59)2s!yAzhM zAev{v%Wm$d@xWQ9X)%C?&^>-sSi(X=Lu#4JAQUGyKw0d5X4Kk~QyUiOZde(~MzoM% z&o@6g{fAEEJP&llQ~vw3XZ?N5_0MECxS&y>ls@uy`^Qm#J$FD&tVYV>`O}j@kIEZ3 zHP5}S2Wg&1Ty^?%-WK&cBU5 z{0*MTINQ^J0aAp2!8&(JBg)GosP4X>6UMWjWZU8aB14`Ll4{BYSqM2^rmwnKX$#agYXFnHc z3(VU^J9rGHQsBZ zzBh|+0fY{GAarnCDHXg_`nABYVU+WAC#r(AP+C#^#p->ywBi)2XC#^)gL>|iGooND ze@_yR@VlFK5Z8?_f5+!)$bPdL9c%Z{BKZ;t-URY1bDSRMd*FngkW`vAK&4p&RGKw2 z&7A=?K&1%`)>vq-o9wQZzFpZ9;$ODK=JH<{jdH%|BC>vivTnG17L3YDh_y|zEKPgY zxt#Y`VCS+&griYRTV$xn~28q*CFG_STXt9t0uL~Vkicgh?5$sv08S?i)Fj$CS& zN`fDo1k7|Njlq-ONu=ZtfK`zgrBYvneo0E?`fVeOuD&3NQ%aE!rte`P5Bi@CY;5q8 z`?k?{7$RG>e)iWrcOtikk32TR6|@47*k|qqvH%EDR0TQTsV;m8AYg7Xo}Saq^2~5~9mClx z+5(`3{_!APSFwM;nWARszX1OC;Y!Cuay8J@0#m4Owr`U|GVc(g+xGg0UlwSKE|{^-(EBqIQxTQsfn}Dl4H<{Ha|wSoKspB( zq{BtGL`EMeVo4;kViX6Uj=F$m^h79*dAC914mh291wsNn8G)4LJKlLHmCQGkya&9g zBY7H>?g6F3W5-dK?nKDm9yvu@>zu1sM=UeNsDI8dl>$kHeEW!tKoU>Zdm)`wGAkFs zxvQo#FLlP!`TqaSXyq`=-3ylY26#`Dy>{|w>scnw&BzX(iXaM z-ti$ipap#6b6x%a1b&(Q2`~itG*&V@{oqP6-|b|@<_|NLZP2EWiv;l4_D@m{sxbAB zc>>D$hF!*;naE&hiw*Z#vfEpe(TgZ`z8fD~O%lL2ax(6<3jt|{VJg5Zcu1JVpLU<$ z7@yz5J^C&C(MUl>-zTv!Evy&R87vNNul?wLYTEfe@+h|-Kv{;B6!D$HF%U1ATrS{W zR0NJ$!HB?(yO8@IL|JN7Kg}Nv{v8 ze*atl%Nu^^5WaKha5Q)A`1_ym!#}V0UORLiZa9SPji!D(`ZuWYcVFgs;{BU}QR&aom=t}ReRQi@Wk#e;`SUwDU?E?3l@w@?4oC+> zdRWc|^-G(Yt%8J0MXIE^>-meuBv9re=C6?EOAP)zcv(zgiVX#}&V~K6te6kBo@YGh zQ>fN*95R%}$Gp^@(egs?h#J%St2o)^WKAw^_ zmy$+d&%rZp<#C&tBg)nPzmF(epQw-G=P)H>P;xFm49}F>1DwZg-@~F#tl%~471NNT zMZ04;&%cUpEnGEZvPtX?Ru!!K5uU?D#b@~bcNf8OFuETF3LV4=1E-*g@N;D~Ij~(o zS|B-R%W&=D5QdLYenKa3v z0se}12l(qhayj(y$n(SklZSmGoh~dDqPiyx&}Rgq&uyC|X~)!_$KT=+1sKUBFBYo{ z3N>2cjJV=p%-1mw?`5(PbdLEd);=T82^KT;PHbLACCYDp={!kt22Vb(qsFfUNDM-P zIfw_;-0!f=lqd!fBGZHAe0)_tSFS{YZG-G!siooC&=L}?j2+C}cI(p=4T+#iRhfcL zz9DCK`b<)`gG}g>Z|#&qh{l&!X@BKky3C4eUYQQad&6#JU$`0wM|(e_Uy!-WL!+cNl4flL&oCl1=Se^s+G-Vtf9-uXN|ADHd>N*wP6sdz@kuqgLL-Rj`g-=fflErk?e^`{} zTll3bCT<%U`i2z)exJoH-v$xaSLF@lmUQafgvF%yG_S45&ML*WS_x`j9J$ws`e~70 zLTH4<<`iybyeiKz+$p^Ub)R+tIYs4G;t5)pVUfpNhBewbNxuwF(k~$EJgI^CpR5ze zreR)BP+-r#`k9DZ;JF~-n(Is-L$yekD~b{KyI0*}Yt-sEGRD>dZFQ#6GhfI*3VD*a z&~7IFFLA+vzW}0;_2|^fkD?NOa*Hsqn3Is||18Gc1eB&(Rc3vijIg+tJ+Hq>{ezL^aa4yzq%R3pJ-5P)9hI&a1`{)$`4poY3rrR?g`DA&w$%m}MSw zIRwQEm~cNFYr4L0Fd(>$LT!U}hyOz}UBG8$&mYBzgK{zgUkQZo)dj1to|9~~T={Vp zt%OE(wg8a55oj&xqaA*%Q)n5-xnrU;E<;PnfWD(V(B<&U(hhOM?f_%*Gg8?{1HMDEN+w!2Z3JR4?nJ3R%*Rq zBe!<3QATYaSGglTrN(s}Mc-g*WV1n7UePrrE|H>DXLpBe?Zf zSTW7%8GtA8iF?bjxythE{=*8GiS!O4yQOd0{1ITtS%ZtOqjC!bA||jb2lJLhP?(w2 zp9uu#ticV#fMnaYz zicGZfxJc^4Y!tgK(QCp$C+wc71S3ny({MVRDU*zK$T-x@&hL_(+MomhXieze!u)rr zNjNJ>YmxT0lRZe?x&Aou+QG%ho_*)izHK(N#oN@{_uU?2 zDh$?!Dh!}5lpMCaW1?H`nV|OzF#6j`N!oBBW!^0mwj( z00Zz6S9nOL3yi|6qIen1H5T>AwW~*2Z=XNQ^TcrVt}bN#-1&gd<;{bi_3{ltgClka zw$gK;n1X9XalZ%uP83MMDLFStRJiln!{RIBBE1K~g)OQZC!D9guz)%wX zUAO>q>oN(RR8&t7mwc}enTLV8jVNG>B*G=<+lex>Gp#4)0L2l!{??U}Gz-KR&UF&1 z0)9jZ{<-AURuGb;7%Rx{2yh(WENtp3^qT{HAy(IJ>m`0=JC_(dLU*(H>7DJMcUPT( zY+)RM%C!M!pctHi@0WS6UN~dUt}O+!BXT~TGeMAu_MUTDq8Gu@4x&m#a6TpFm#TM& z(h%V>yT1M}fI-fU5`2}$zgr>vRGER?j67}hLNxN464yV!KGhLIRPG9ZX~F>n#Cy=L~mnv@?K zi>PLyNmt9ELfyEb!rR@T2#m1x6)j72V8i?8oj|zI45A9O6^VrD zm=YsJ71#f7x%t6kl4D|Z*B5{P0LHSHU{=Y>4cXamZva8z9kJaIYH-HUe9Z|DQe#y# zf%I6e&b72Cr);SDA_fK`A8WV=jyPH1tFjoL~x~ zLRI4bTb44CxB@&4L#bYkC3*;1!E$nK(Wa&5FV&##%Ben3H&tR$Jh0YU46FF-%&)?{ zH=OyI8S@o4?Dorv;mEDUYRybr(RVblr%ABN_+`IHt)e181K!J{VEfuxm)1Ossnv}m zQ?oqh4|>3H=O1mH4qLDA@+94#>FjjgI#&e>$6?IH*+O?eLGzH=RTIOPtgN z09r{3J|j}vGR1eYYY+>tYq8+*I4OLIVVMxsKMC1!2#VLB0PBQR;=|*nHP?XnqwJj4 zY&Wg=CM?yKxaKT;^Wn|9=}TiuT+O`l$`KJdlpV7q2G9b{sV^LsVgV$c7cja{ioHKP zVXUj%pM^@h3sg@90-@SsGFZqSmi9~b4?#cDBKP5Z+?!jx|TOj7;d>f z_L#$)&Pk>Z`gFO$spsZXq)vV`Z*UkYw41r+*E?SuJnskSQ9W=M-&llT8oi<;_j5tQ zCQ7uf09D;MFej+cVcGIZ;ZODE{)(`E(OR>IBq<+I$)=&TfjSYBz55_e1H172k$a3X z7!;0(v#H#IJ-7O;{j(|fUqZbFB-~0V&q57ak`2|FwV#IQ9C-z#*&K0UNU%*KGX^3A zkY4&|J~)WVo_LC~*f*Ly=C;AH$IJ&`vYv4@(4E6u{~Svh+8*P1#38E5I<`38%gd}p8)Xm5QFq~)d>)l+ijw1fBIP|J^1KB!Ni1Ke4P6E5Qe~hn%^X|OVTun_UgYQ6e0<%mFdOfRq}fGW z?eqV_2T>IG9^rV3oj-4hxp#}3K5~z@vKq)x>VfJeM=_bugllt~>RHN>tit)-CC1jr zIVL1uMcfu5%-6B{<4j2u!%}BjP)30QiZ$|1emJM$AO}b&!$28q^=TPw$Vqn#e%WEo z;PK#YMVS_Rrpxi)Vf{gs zL?h^%vA^@FHpzDAYP7w5d|7~R#zS4vbX`(c_Yaj!mz@TsJ87yB~4dVb?;8B*KY_gd{esJjd3$-rSPXQE8k{L7p* zW@;Kthd^PZZFD3)-_X{>Cv}1jfzqE>wEGJ>YH7^IX%*DXcLo!|fbAdKH2(S3^FN$f zgBk!0Q`I+pkz|I(A4cTFg!M^y2UMfvhj^MdkD>sP!U*v{a-`((?~+L2CQ3%I>3o-Z z;lczgDOL+8{Itc{9ad|xr{={5i(WT>X^ zP&Br67%jCuM;oeI%KGw(tsKV_xC#GNSVv#KgPfl7BM6(Dqoal3%#*Ypz$s=lg9_Ifl_z6qX!Rm;ug37*WLy&oGRB@gj#^ zG8X)%{gVZjvt}}8N|?aphF?puene%9%{)t;%HdCZJ|SPmWX(tLeJi)!uv=uwZp%W` zOnU^a0YX`1R+E61?4jYyy$W98EG?|R5nj%(pBrESXGG7`x~W_?&owrV8*mYLcI`sR zF0f+*%JQri|7O5vT=60VX-t^Dq<26Q*h7-i{Y+G@=a}AsBPHB^2yL|^XG1|%1B$w{ zK*vB>jlP`w!M5A8oBMCmjaS9ChsiOzqK+T7Oih8K_*TN|_C+FgYQj=(&CtA{_l9sr zVuJOfr&78zD1wq4F}`X3fgT9br3ie_AO@Es-jteI^NpdcR|8nhAj^oRiwH>p?Swb= zPH@K`PUVe}_i+Q3eda`OvUDci%D{U?d|7)umHG?TxKVX0U;#G@xeC_6=&#M1tG#v) z%Ug_|=B_-?&}0faSFm3-F09t9`0vRBF%kPSsF3@Zo$epN;jJ`jv5Kc&mRiCJq<&OU z^OG!k4@OcMF{HQ`sHB-ZWHK)uye2-Tj*#=ZDLw|eM0q{6n1SL&#-wqKt^{&~ZwUX@ zr392b(qbms6D9IOni;>{MH{1Hs?3j$HXWjj=a8bEA%HGGX)3Aboq4S`8h*V}XJWBn zmuYYHGhcPK8m>U@l8JgePkiH9u)SuBV11uaG9NZB$}+viMDjXp4}~;3dqQs!v>b z;dN)`owiCt;GFAV^Wc?CboP~*00-PXe{i{g|qUzQIw@_6NzLGWx*+5S9(qZ zUt23lpvUNairWYlp-uVoS4Y@?|812y`;0}$Sxj7p0*`_!*5Hpw$)w(;#gf+cwdjvk zEbhFyeMy<{6@6bjgMx%ztd}}7$5~8moQW|kC6jQ2=@(Wv zDT=g-YVMyz;^JO@(CNOxbNM!`H?_Ou1%^ra`mDKN!V~YQOMP^A(*{dwGfcjOdV&u| ztAK(9<(46p6dPjI?J%kFp7UY7AY>6HwEoOaV|P)G;PXE~QA+!hiSFL0yIM#aZ# z?M@-;9erT5!+9C?DAd^F^+om>ia^@yxQSb(ys*-^3`#?WIfThO>Z}7b<@AqLez;H{ zU`s+Fie$?|Nx4D1*$Bt`Ht~=<51e<4X}|eI%n0ngXgTRZQ5NW{wTc*Z6y0*d>3(9t zSgqVf!)A8VO9(~J1k8Y3pJVrvVpwDbrA4yxh+F+9meIhkKlSnh=Tp`Z(DH%T3>KBl z1;E9Ywaz7)RN7nog_?c&z24(mR5qn(iHNJ$yLRA0X;CvJ&UjG1G<#L>2h(j9<|0U$ z3g_**1Kr9b_M0#B3-p_rkgAt0r%mN91edj%YWn^G?PG1k$KrI3qL1>^EdDlnMiSYu zoitV&6fA$P0GWy_?!_7l2Gfx%9$J4EBfXBG4S(eRLJQjw2&!5miBXEBZO?uTtqcEQ zs=pSt-uJnp{2$qZ?1IN1Y$b;&$KJT3*OvTbIoeIN&T+y(;#Y!IQ-J&i3RLV`q`$mQ z`#_L2_wL$e4ew+0AvX?enq$@RvG$uOBMH);eFjiffRV)8TUy^Zs(Foe+e*Pk8Q_C# zs10LzG>Xns6vRqVMfMc`n&1(b_|2T;a`V>Wl-|WnRGEt)DxFE!@PQy(u1lNH6{sas z0{*X#Z9WVDrUtuM7XkeTRIex+5^SGVknH%r$1(jX_jnqemHd=a7_>g`ABbB%m&VzW zSHUOLR#E<4u^%${#!x{vS5)n08nIog^In?DGyF_1$(Gep&11^(A5LQRVQQXpX>5$I zXyR2}*#2C(P1-%{SKWML2{GhzX?wsUwIbNsbh2tGF}i(Vyr3h{Me#w!xh@S~9lP9w zk$EKGl3wvfT(?yb;V{ARmM^WY3C@tN!%zi8R!rB0wj@H`c^gkIP@2xy+sl?pE)Dwx z#=@LmDq)M3ufMkOIX#YKbI$;sJH_zX8vCEiRLm~#6FQ{p_m;?H==2rj5f)PPC1z@W z?!WvIhn9G=Epw0d;@Fnr#qyqmMfxVI!hD>89GYQskI>Z)$CbNe)owrCFb2w@$x7o19OuY{X(qChxP$?rD#?5PLt{35lb+W( z&_cA&PpS`9;Dcbxa#9={^D!qBeUT53jI$|MXaq46q;2#~q4Z5MD; zTdH10+F$?2nz}T$ERm>VEA3NZLYA<13lt(G=rn{|RB$#-3h>tU_5O$QUGq-ByA**L zcQauI$2SCD3~q<@^H#sfmyW>SQVhK1Q!!lp=5NIibj6QH?wwkzn_UcY#T$)UDfPH!!ms_wv{Z&1ZxlfOK&68 z`v^Xr<;w(lxqLHB3u`W;!AIDLW`+1iN=o0aaPHK?4i^_`C;Q-i&HruOT};plSo-A* z$x_G<2xGSF)8SoFtjV96A{n*DZX|Np$)zssV5@pq-B>%%D7<0Cr@TMY>~vl`qIC{^ zYVn#~8>gMz1=m!L#dG`;cXIu{lYAEKwN<4uYpu%s76JL5SBPZE+HPGXvqHsiX2Cm! zIX7*tr5X9nq3_(Gy_Xmi{qR+fgs+Zmty$$3s?3bR2khZUg?9@o!#&GNqnou~p=}Gt zPf(1s6A(CzFyq!By(TRJlp0jglI3gS|B&Wsz;+kWcfF*C6{igjuC^(26rcab+w`mS zEdrakVVd*C%(ZR>B55WcNl}`F9LX3K7((w zgew?Oe{%IASfY`f`pmUFbO1nfS}%!V;fC9{`-l^yl{Xd<{t^lZ+_xxLbWok-)FhG#g>bId;_ZS{}%h5?M@*sSL3ScbSU`&n8>rU|XV+X+-7kR{CnL zN(vMjLyeC7U>0Rps^@ta`cT%CyE!80Z+09SMay->_sV7rBykmScN`Z8AlA5@h6HQb z!d1n<+^#)T_rF>FgxG%dlBpL@obt|!Q`L|MYp@b)@Zc;0F7+#l7kVp~Aun6k!uKpo zMJ=V-N6P`O{bIjM`pq!27?8{<6tqyL0)sWkyS5 z-fB(khp*^E+CBCrvGWbOak9;Qamt}yk9w9yKI*)OOV^(n*;Ds8uCp3b@HA-rCt-ZHtE2f&gwmN5p>#X$5m_PcN{R z#BN)nNX!s*)Um#`(GDFP%q&5ASZthejN5WmNX;Y5&X0KZuj%EP0(nTJCd#*g=AAq_ z>FvC@Tg#RdwDrOa0K*M^)Pj_4%tAbgQXvh{h z+N{R8-lZr|5MlH3SFi=rF;x_8WZIpMC8GNcnzw>mnZevwujP7Fj*eHd)a_LBH(-4~ z&0fEgFvwn2n_;sW+CvJYnj>MyZ>AgX7%(*ubuXUWFKrZ987L%Xb5FCTXv$-BqsF8F zXZTz?5Fh41Mip(%^xK`J7^J(IKD1eY8XKjo>l0)z*vak|DQBcGo1#@zk$rFdG)}Aj z+X7pE`}=H#dA7AO6W|9Y6K;UezQBKhE!VM);*kI4sCi-z@~NAvytQ9=tLM_^7#nd9M} z&cB+psAN!1uOU8}?BE%-c5XHP2o>HdqZa?lOyekId#j1B~|(3g(`Lqz)#My`FrHt-2p3$00Tte6^VzF71@LP zx3u|#N**?>sEEJgF@L044;-N*2u1usD3W0Rn&-u4hjnLwW#^wX6g~W5kd(XpP*lwm zWr!kt-l|6^aC}Vmk=t9DuCLZJb4my}^lgH-j!v9S9i2eB0Keen@kg=}%|bEhdMTKd zXHlX;RZkUrGn)B55~OS2mocU6g!}{xUAAdcxroLa=Ij0xxcl6%8ZOKl?^xJwj@?I zW69$$;DoqlWdj>^E6fOGj*`!_)o6T5VpRc<#*y1$+R^e}{r>2u z!p_}_`1mg*NW)ay+xMyks~^V$0g9JVAdM{|RCb|WPunQivB5v4^CLcfmgWE9Y}OjW zKh`=nzdg(_T6?7hS7Z`)QxFYO+^&|6JV}^SM4$ru%bVQEaa4tGz1952x+h zZ2H~Yr?n|$hOF`8mUoEce9cQ*1_S&j5$4grhw!X`h_s+gEhdM%z?hXQLIN0z^)5wO zx@N&OgjnORfa+D(*cS#M-C{jKgr5B#v&6lcH4?ODmH>5QTB%W2=~>4J6X|brH}uv# z(}?r2+LbSZisK$pg?8O>EaPZI=YA60q}tD0R=JMv>Xjfx$AZ=%&^PpVX3e!~D?Q+^ zQvT8aAW$O(P`b6vVC1jRgtEQiEjvVhheL`EMA$tRUat6C=O65RF9NN&tz6IEGClj5 zUzH*Cjf6rBi+>Ob64FjB{x~Spw7KrpY4*i(l6~o)W?yi0H+Ly1`vUEF;0vCEwEzf+ z;(69VH%EQXlR8ar8;*9(^$E1qMr%i~^llyI1iCPq!AgO;kqWchl_)AoyP5F23rwNP zgs(-zMr&FA$ZuHpKW5Ut8231pO7zqLD*LuXgM1Y@K)o1OE{T0Cm6@@JbJmpNMZJ~6 zBBSJW#QDO3I2tpqxRjuK)6`iNX?NYH0LH~bQ5hOI-~Y^36+DjYf3Yw#u7_&?)EcP( zb=bcPw{e^WlciI_V`NFe5u%JTc|N|>wSH}3c}t?m$mOJZkC$>U(Yn4?6mu8>#F5LOgjtaIU_T=LQQYZPfaGe zQ(F+C0K&6aUQ&0QE@9KdUbbJG9|8)`rnUyoL5XG4?}m4m-)1z!8D1gmwRnmNzd@Cm2zLpaci0IoC;QuI7;o+5;5Hd4SLDMMzE+x$B=e$6pKs{PYK8-VUb=Lpc@7#;n769y{)tHf1TlR0}cA?QivCSFa?JZt5B+M z(mL*crS9Ks`hA_97EizLdMHQw>I6|QO3p6y{X0%NU&RU?Cuk&7Al6M;%O_}n%?TP1 z&3gLoS1W(*0#1TXQD0iXVn9H4Ihr+a`~p4+@{t}j20bQMlE-+xjq*a`bJgut@3D9i zM|ECWu1vj!p516bgDd61t~L8k$- zidMIlBVilXKfUsa7(DpY+dbiG^qBJr3_ij66j>KAcO9UG#L7GOerZ8^dL;_- z#PlUPdnHC%uF^KAUNvq5MRQ%}a91ybYmDWrIz@}G<2O>So*;x4!yir{jj>ljU+E$* zys4>h{R^65#H}ANDH;bXn}46l8AZRyMD4#_u~2KBaeFyY@V0+yz)tjz`*pm_PZP=U zeu)%yYjAU;c@s$Zs>KXg2?_tKCXidpv3#_D@BImE%TuB%s+6^@qvCDbhzXPMSnP}uMzmE7aXk)8{Uw;Q094^tAFIYb zM15s<2y8Xg_eG=?d-1(V%B0PIX{f9Au^YM*sOHHUTm%1I4*$(xs(*ez87^4r^-D{A zm|DD?$+~FpSr;gYNnr`8-$zi0!$Se@Qm9aRUPY96UQYkHZdj{v7YlD18gx*m)U#yc>Ufv^xrr3St}Yzkdtt4xw8M0mmDE*^dv~!jJ#l z{bv@)wf1i*{AlT=#>3;6cV7d+ti!`Ue|W?9e#vNrZG7w8TT}XWJk1_{@UM+mhC$=+ z>%zETA>NYg7j5*xe4s~%ZtzI5xo1IBZ$<&nB{XnfeZYMcG?@qrXh*b{GKGcZo5F7E znrF&c&QRO2NDOJm$*O#cYtXzq{jO|~pJ@e|CDTs3J^sw~p5ADe;=}t8N@ww z$x3$UYd7rDeN-$pw16l51H3=$)eGGslP2|dLFiqgJVTQDg^Vla18Ih1F932TDNB^0 z#;D%_lYJWn#EE_z;;Gq>6Ujm`7LP&7d5t#qi40ei8uP)W&n^Oa7oqMwVgos)Oz?cA zzNPCEKv}4+dy*%~o#sg;lW@LTXrH#OZ>uv9kDViSiGat9HnInpB2bp-zYP1S6AMkq zGDpNIQ&{lD&yA;^$*4HfL}eC*yrJt$HzAKZXYd}-H&alE3k!9~h8xG=iaE(nr}c^d z0;)-p|2qG_8!u)W@aV*U-A4}%y#RJIFGOBPKn|84{b=mKIQ<7ihq|F6^4;# z$8XLYTzJ&jlTk{wyTe@DI^(aqE%WcpY>EUD0NBCfpYJ)p2&iikBb5tq+1S>G#1kwf z%_Q#^psv9yD#U6YqW-_UuS;a)>H|7RsOA^5kU}kNBq^1iLw zAPgCIOFC&04*;T{evu-kGmKMW#X4Oc+i9Swb+U*BKXvm3jk_g%f_LKb+zWfJU*6&0 zoYRJxnG%W<`-eF9u`rW7XbvPsO!WB+FLrXsO&10jG{;2XZg*!t^=E;*Lxb?wksk zoJ`Bq=LaXPlg0d!fh?HEpGQu?ywq;~$rXrARG!|z#82~(FTUg?Rv_1i;`WwmlpTpz zK~D6GnyRbIdEM{oSpWLr9#0t;9i|C?0@=x?OtL+2ssalrG(qB zCkllfyjbHS+*Ai_XzJ8@q7u91R^O|!4?L>wZ#wqQ;4@&&5vWVsaq2`07E#_J0L$`# zApt=oz(}(ph`^H?90n2N`EBnDv?g@TpM>GsoF%4U*bF>hgiD*(zHT}2oO=`2ZK77` zJ18dG#(tK4YR>c*5ipnEiv@W%h$A{U<=(pOqA{(Oyw2;=AkzvO8{^b_HT@QP=K|$&o?qAZ)yx15a{^)i_Fy= zR@?^!pKdeCzI4I__8IcP#Z{B|FuPVMI^lC0E;YynSTnFi+A|vA0d=vH+o}bqsJFQw z{Xr^WI+=;_$oYrV!XW)InMMf6Q^4&Ro@9&U#RLyY)kY~XgfK_F1K}JU_%^|#e!hBU zYPaW8lg+mJ>^8Jm1v*qBPa#SEC(2Wtrr;KVz~+haVbMuo1B%p0fejKx7t->UhY8a& zd)Dr&4+p~&q?uwmgu&~fN@#sly&jox3PA-=Qf!XsMbm zH4m1^{fTvG!IiNnj^ttmN!&`AV+cq zD33C8tY*89Kx#Ie@30fJvmd-!N}~5!?hyT|>V|=~P8pz1X{LFa78`0R>FN$ZhEM_< z{lO|6++K1C=bDC3v-0#ixkehLu%#<1AdSPk@B?3`z+b@+mE-g1D%0PysveLdGBj5W zPsn(VsVZu0SJ#~fiBNY%K#O;^5=E(L?j=4O-HOGo#GJds`=swR#Ynm?68HkYQm|9o zpUVcp7dhRjLM`cGYGLry&+6ZymlB(uG+*s*3e>8KXU`MRwgEDQ<)~2~!5tvvbEoyY z3pnYOsL@+96Gvz_{xhOpb3GXul$Y^;W)U1O4dbV%Ma%8QxdHPAfRZk69~8_p%aK}{ zNS3Gkx~THLG5|`t3bag_0-$UCp7$VH1He{^3P8s;@}@{IvN;d^$+${BX(A zcv4uS3Bnq(AT`gi;2PWC<+dQKQU0cN5`gwe3FtFJ9w?-tY_C6x_(%xA2T!IQj^;aQ zGecy1qU_=5>0Wbd2J|*z>P-+@*vIUo6JDvcLz1>*UBzaPG&eKg^3J_tCdS=n1TT@*)a;niFV z>t+Vq9C*x=0zB5%adsM;?rG?#z+%P6gFH(tK>v^@ZTS8`a@!SDP%qFV&8Ukesi^xL z4Ze=A2DBl5*dWj8D)oxSU zUuqEYE=2t!BP*~FOAy<0XzGgydwrp9YiNd7%dT(E6z)icQ9CSOV+HO-=2-l zr_RKtj?PiuSx(J?GW(Vft4<+`ZGF#e_9ve+076J3V`f(PTE=<&-xW!5>1`HE9N~J8 zJ$wcG=WUf7>k~BXg))-bi5A-+bL{e}qwf<3EQW$!gBEqkJbQVv@Nx(pr;eY0`As$u z<2r;WBd(hl`aej#?wF}3Tk$Q!4BY~ym%4eLrLj}UCpLg5nJ~4<05n7pFc+7|GWmlS z+4IcW;tzysTkf_CGkNJZuh{L!=`qloQg_>httBT|5~E=Lr(erFxbZuXXr z%0}J9NXUv6Qtuw?_Mw9jests(f;XiH#YnI?UpbwO*^gUYPheeKU2)=Bc{0KDkTPIJ z)j8dW75%#9kghG zRHpXB(Yne)@f@^28CUVVE?l|?_JYZ536#U6^TiK;(qF)WeG31^&bRtI>T4MkF*3hC z;zuV2o|vTm>EYTv=BrBWHy=lC+r3Y%eQ+cD;5IeVMSOd+NY`=Xc7@vPu`miMy5`=kV8F(1oM^;lE_V zTXV}k+KSV7!93jK)pG3d>bE^+{!cq&&nfHK4a8typGs;!sh&`ib=IEgI<@@@y^Y~T zZuz7eg0Hjv{&BhfSgmIFAmc1T4Y4hbaXor5PeMCU&0=|XX!NUbnUr1v|CGaztdcQL zTUOeT&OMQYD?ME6b(3R{ht^23H=VjBANxlrjsygzD4rj*BeHlv*cholP)0jeF?m3* zMjd)J>d>o+^4r*H{@Jd+M33ER) z@Ou3teR!|vFyTt&tKUq%-E}t>#0ZN`RnlF0Bv+MfL1SIpw_7f4KyRCd;F^YP4o z)@!v|U;J1|y7p&nf>Yzh&o@Q4iixVHYAx_lznKp6YbW@o?aTj5E#s^Sz2S0Z%(1DX zhwWHwybHpLDoAd)s2P!)4Si#{qyVQp%Hy zPkh1+2?%MFY+ZLItw^-Ghy`Q6ah@<}QzV5^@10rp+MU<^`LH`{ zr)j0zeK~tY1=l_Kh8%K_%iLNCkbai(SWUanh)po!U;$~!JxYCBnT`o7wQ}R-Oq8_} z9$i7j@}xcN=Cii~bu(kmI>GS|3#9E*4jMBtVM(QQW!P*Y-}UDyLkE-ouf-$70vi+~ z2YEiyK{M)Djrz+B&f^q3=83RS9na-y@^@m>j8Z*&>8D_!I<0R^=81xuNcYvr!7Q;P zMlhKAn0m<@$A2=Op6)AqTK_d?XG-QH-2lUcNVDHtAFND}#lxdtmo&A6x76k{`m0Z= ze<3>xuxM}?^eHnvC3`dUeL7txuI89(kRN?>ZeEVtvj9lk0{*#xd6|08o26dzuj(px z?%GYpRd>7f*vP3_bnV{b^N#e@`$0;xccA6D)asx-rB1rF@O~#F${?P3M(9 zFZXP1iYVWm!R8&1F%b#se>Ru6v{bg#{=mQAq9E#*3;c8e^DX%4$!A+hCIt?wyx+^H zek~jjOGke6cs?YAQ?2ygzRWlN&*C>h2Td(ABiLZ8yb`?U1pV@K&0^0na8R5B6${?7 z5t05N;*)fv^PDF-Zr(l36Axghz652#^T4u&65o7ozUiv9esq_^dr7DKR@0*ad%>DZ zeJ_=R-%B6+SB??=YjLk`@^kY+d)`5N5-%}gKNoX?jSG@#ueY4DyB_W01KsA&p&g2o^x-0s$ZXy=J`* zHEmW1775(3K5fI2{h1rw%}A&qP(0wO8EoWN0C;2)e6R7ZI51WfN?+J6t6w8PL((B! z?d|9ayJbZZ0u>fj4NI18eIJx%)`3`17bSzlf;#5n|8H)Ak@O1%=HFOh^RT2addc<> zsGv3Hm0*8^W1_Za+pX%rKxXYag%i_EiH@FG-A?FfEIqf=8l}qV(`$X{3T!*yJ3xn` zXfwSMup^&(*oL%)`!{wjw~vE1AOXdHD)k*7Ou-s0hh*`6 zmu)ER9Dz1e9@ug-=rk)&|MqHBD~vHd_lG%Hlcnr;+g=d%Ch^CJuWkJRgwI}8dDb`l zh91JfWA1=dXc<@VJUvAH8J_{U)DBK*g>M8i_sp*AVOaY)Pcg)+bY1NFW;HV@W;4(o z6DK70wB;5(8@+8{cyk9;yk2@2(`w4Jxt6}HP<r`U=-t+U|9Z!Evl}f)@0h3L81teB4>j_crYWAb{PUY$)f+OHX-EIe z{nK-Av{nBpd?fUQzvRY3aDb(!oA=2nv>rt#RKXNi`}aF_xSzhnE0A)2*&|%NXoyq1 zE$lGc`%^+~jZ*e6j^H2AMg}VNfFoSl1?EKx37fR!;;PEA*mW4mSZ;zxcFl*U@zXSz{Ke1oZfDG5=i+uOwAEu{#7bfCi%~*DPDxlBKK5DoLM1r>ri=tW&ArP29t* zBL=$8iYFs{d*w=-!`-HWPufbH&}t*?b0!)^olDyD4|>z@>pOHICJW|w(u%Yf4eavx6RfcryTF8B!%$j6etcvla;V23mG3PPXSdjBa!#&?S@Um0!t7dwt?i^CF640PS8Ro8dB zM!|xC#^WCIY|!|`=}ElCofPd07g;u1-%Wh;wM|B(Sw=B_W}*K0i!^rVU${>KUiHF$lS2$ zN4gc48gFMYBy{TFyqMgn)w}`6Tq|^aeY52wonFD7ap7Je_si*Nh5R#2J~tW^ z-{$sTPedUY=C}IWhiCTkk}pRgusz7zXuhR6Yq%fVKX(sa+vtoq4-QxT)D)>6>F#Ad zkeTsw^fZxs0}O3P4{6yI1szm>zBhRU@MV_wOm&1bOQXmahr(yr+)nMj3@RXBOsCeh zyF8qleJYJw7w7{MY0f?*Oc#$V33au6UHw1D&L}Cx_GVUYA<&o`DP_p&j^_s%9n1n!(kn0`Khc6 zJszK4d4NK?{CM4vYFJ~5YyVt2vH_k*!6M}60HNrTRqnrBsL6A^Ns_moa$S&PJ=QJ1 z4ST<$T53M|W6nnNC#hbxMGj?M)W~^n)V#rwE=tS7oUT%?i7>~mnk={3sNbAOG-YVe z52L@<$hO`u|M!MX4|uW2b$G+N?grdGykS3a>DdLRUBHS6Ii_do8D}yX%FF(6^iCbP zd(vNYiB~l#i!zp>)Hs&GBJJze?cE>JB5%|Sfv9aBJbX^tGL15jzP!Kx^xvN^gr7fl z`14-mXZV(Rvmi-u=2TsLPMXgw!_VO$f?jvdQC|FAU9Q@&KV_wQ^}6@!P*<$+Vx$eS zgB?YxnBx(mLtI)Ne2NukrK5@`PI04se zS}#|qKtBQ`BKZM{JR_QX3G#!D=9!MXnT{l`#hXd;hcx|x@{;jq3JUvA<{#F0 z<7ZOk!A*p~?PgytS#sW3cp2R((r89?8=@loH2L&>qT#K`YRU8eV?hjXIlEgzx7qi}{G6&+;1GW}p>|&upX>fGVP**^QhWFvDvdU?&omy`h*Q;ETg6A%$rv)t z=z8wjscz_-Wb;WM**b|c5Ghz6)fgwy#ub*&U%Pbf@(;VKQggSym=_h`hopc`IuA5X z6z=~`@94{9#{Ko?)+l4=(k2O^MP%=6rZ&uH@p%gAu; z#5d~sW+jK2k39-`;>;$Zi;Y-Lw)@A|)k;$&jBwA+Uh@9*eJ+JU=yb?gr@&tBSy=(Qu5L$U2*!0J{4Tjy`h$PdopjfMguy0t99fwdwB)4u7H+YT=efWU2`id&|?4hUnjbrQO_mDXhl8iG{#P_o=gPP_^>tnc#aP?IF4=E@Jmw=oaw zi>C#O&<ZdxSgSq`vfE{V7WLm${WK>oZkYX3wBPC8&Jt3I0Ok~@kI_{5W zFH^4iwBgkf!CM>>nBv-NQ}8s2C(ow*Rp)ig4JfcN5!1`!OxZu_P-&(|lnEK<^EG9+ zWYpzvJO^N~PvX;XmX3g{-ep-*|-u@b3gL zH+m1V%c7Ql;{FWW+5~c}GlrXsIH*S>xv|8bWme>rAYGb~@ZjKbZ9(}+PZk9#?K~km zIb8MH(j!B;%nJ*2=45i9!@=f-KAu>Nr4(1h&U`f2AY*;HL1}DEIrE6}nRahm%%I+3 zZy-9k=ZW+Rol2Us(V>ZBnL>_!(Qvi1O7(M4nY1UWm=6tHJ)N6n@J?85P+~RxGw$0W zJXJ36r9{-32{)kvpr)Q@?NfY3t-r{c=h(KZvT6QxC)sYFSRpGsnQ$1qpI9?U%25ZFfgASi|(y>GXZ14>ZiGzZ6jH#v>h?s|9D z!+6dSomS}?`{BFdcCw(2I=+ewvB30}-x9y&gY7-H%H5Zo>0^3&bL?OEA|$dD95k z9;iE=XHfMX2F(^$hlrVX4M2BYvqhT*)Egk(4ZvO5A_dCef+|!XA~?3kobrFYRjF^G zVDWs&4H;yj30BC5u0y)@Xz6**g!l=ako72{je;V1{i+X_+a#gGdDYU+E^?(j7qweO zW5p{$tDLWJAwEmDP$74_{eJBBgq2A|ugg&*@%}+o0-^&0diroP5R6=qJCHm%E2{u75%Hm*r}|OY*m5A>|mL z2%GXWmwUEM!4a;JWtQck=I+cKuSwgzr7uhAY%W0-XV!x>q{%rrGwcy+H-3$rBT}F) zSFx7Ot4Ev?r`zfJzl3CtpXZ#BW)0<#4*U^>B$U%B+{fZsA29Uhh3B%sFA9xDh7S;Ck+COsBCB5W7jF(yfE)GrI4X@bLSR5k&{dl@f{~3)Zi}$>)=kVV; zd+znXM?!hs`4unBjqjSkr&WP&?AI8C!*jH`GSl^aJE*hc5iDqxQd%)-X3>n1QL7JP zN|FkYrS4|*v5;!SYl^#h3-VR4vv}{Ofwx6t!6dS&GvMf`LX$GK1AmW zd^I#EhICr16`|AHRlYEKwQcS|3d2h9shqb)KNi(~*!jd>2*nayKk_gf@;^z50BLFu zUmaw%9=;GW>pp~B*7poYhP)gEQ(sN5Ra|K$CzqkS!oF~zS5WaYjdyFaT4`0;^kLY> z3FlWDVM~&eI|HgG2ul6#>& z63*5=A37O`OHXSkFF})fjQFrg`ukL!i;y$yeU5d~OC`UApAAi99OF_*V0sGUJH#m~ z^7kZfxJM=vD}^ds-u@E)ialSp=FU!q3_EA5q}k}GGnP-JS^KDbdA$O2&i(_S`UNS; zi)A;2?vIJNTSZh|OI3(9jkE>%%3v4=-AScmU$1xaJzg2U#9LDsXG(_qc1R-I{*Oeq z@RvkJe-W6h`{!v9ChKAU=RYPZUGru3Od;?%hn}w2urw(-r7SH+Y?!SMKS(+lbU9uP z{XVWl5gAqk<3D&JufS zdIhJSKrV`N`m&@fN6$|Ehid3@=$W~saZp&Mb~5Q{Hn_x`D1G-pvjk#;wF}>LV5A+Z zinJ&)5YZ6#U*2Kr9_e`KGSKFx^kdcWqfQrM&5?A@{V?K5>1h9B z>wZYQ8_{>nFkY3#yxbcrerOh%sq=o+riN36-k4LZ?Iou^9^h^j`sJU7=*!JmTh+7X z8J0J&wj}|TFxH>j*K{0?(G>*eB&6B?M=m{;3OFaVF>)UvT%SZuq@QY5Ml%rdac#Ez zt%WJG4DFLxt;DfMS9&A~LBM3VB}&BJF{=12>7*Rr>U6=O-c%*+vlnVog38M>rCmc7 zq?El0E6li*Cp5ArFKDZW{U0o??@ZRvh#_3XNN*@U=F)3LBl~UaYJ#+BYpu`N)w&3- z3U&D=95A$SUWR6-vn2gfH-Ro?;=f;06m(RMx|tCK2-tqqodqc%z2IaJECT{E`f%Xg z{2ELxESUZ8xU5w`I~pcSLh!z(fD^t?ISk_@(%;^d{Co)`>?IFcq?vToGlW8rL7LvX zmP;bgv1Tv_`ilNFn||Mm@4U6kYq-9AD|bMc zlho3Abr)tN)c0EajBefR;xBAsh!r#on7nlY|4RfQ&~+89zHusq9_|ie@<0y{A!A1d zHGc}>mER*G??z9CAz?B5lZoI1dh{|h-;Ok-AoN_4KS@z*vF8Bmc>ZX_&RhBonHCd+ zbPeHbj`o=!i{EqsGB`esv9aG1C+`}8G~yBr&ZMim!p5iIVMf5#I+*G^Y>6ZTHxoe& z>$F0~^$rok=@c7Y^AOk@l;~&(KX+_q)k*7H{G{6Of0z>2U11Q-VfNEa-Wao=7zFoR z>D$K~;-1Y|8=!yQjoG{~v|HT8g^s9)$sA;kFT;lSa55)>yM)vHnucBN;Ry9{*MMp3 zc}4AN7~wOEOxEEyzZ+wGKb{1ap&EGm(s_Yblxur%xf8gBQY)WZiiQ!s3LRb+KQrJ1 zL5|%30Jz#};(xO^?ywjBW+{%^4`I~JE2FQe!MHQ}oaWf-f*KyQhY8_%!Xy)xe1rIJ zQp&Fr_|CrG89=4)7N0<07}t|5df+;jlN14cZA-k8Fk9JAemVc~P8_9?;}fl{6c<%*(|RxmY{&$2 zK&!e%^T(Ntdt*B4HAx+gwQttgSNEh1bSzdse@c0eSj0$?n);C(xm{F8(lw&r7r=MX zj69Y^d+T#=?TSW4wv{{DiTsphh(ESO_=q!cP<^|;<5Sf8qb@6|-aO@DJ30#GT=dl- zAXBa^WWmfNx8;PECSa_Vc8t{4Or=9cXNb0=*(Jmu?^#I}5x+`%AaL{vxOCTYuGY;j z+g@w6<(y^Pt^$Tv)!VToJRiwvssV1c3!hKs7w+i`d4*S>p#iDFZ}@A7{y0c8qXgaG zyJ8}q1Y0i+i=&41vcm`mLg9ozF8la4z2EERquF>^?2(y>RX|ok9~3^?|e9#=0O$ zgYeM2&)IVq3MvDfF2491KD@CUemZmXZkK^#t z_`49R&QYr(*(QlxK<~j5yoPS&w1deotDZze1mgs=_xGmLzTU-QJ8D2U0;r__m-phr-3sf^~?GIP_&78)1 z6Vk!zai{3or&Z1YKN56=;Qi=yWkw=!mGiMDB!Y6Q52Uq2JJ{A@c=RugS>|S8kLIp`uWes#I52hr`fm|Q4HM^ zcMR;EHpDy3L(R3lkEoIRfx@WB&3@6>EhdR&zQ(S~*|!Y%a?RgUEO`s|73}q|8r&(wR^ZP zS++$SwZf$nn|Prt$%LZZUb)7}M}Aob`M$=&*A(}V=MWIx!=KBVR`bfza~Ki@A$<7U zILdHso-8hLP!$!4{LJS6n7aA^UMppgLI9Jk@`ipVaVldK>$&7X_JW{2m*FnPVb zI%fSz2tC{yPs79H^mTV{+7A9wfa^i(5yA2Ds= z-I+hLq%Jd*sK@aN3oq<`N!$G59a2xFHQw(hH(C!nZzP2hd`q4V*r_tlk!--um+E0Z}R?#ka z;m;98zd`FghvhwaA$&^73A{>vL>r?_KFR2+bMRyh=9#E^t5@_kPB9KOeq(I&m{VKx z7>y`*XBpk+PvAb4yj`f2a^rhupw632>|rpFPhM;oKDY;Fxi$r%ZurWbX}Q_$dJF7* zoBT4hwOVnryewNdozmBuu~_8%GGEBD#;I{sY=3#Yc&YNRQwqAns0t4w}275g@rB(-gB zAlCZf7q%R>`>yRl;RsIGD*vc;5)F?(UMxFo*-ChpAhZ)66pWdNQ<<-v6 z&u5CLKCdCP8gYJJ=vy76`fj%SCVoUJajPmlD9@hgx(LP#5aMJrv1i#=N5n!v@-tX0 zr{!+T;j#J*Vq=&aXL`gEDV)-G8(#iQ!!MD2p#ixrp{bQBGGTUe%eo(G<|;b}<1(z_ zOM{s&a=ui5b&d6&yx*JmwfuDQ4OPWkttQd|T2{rfzvqWbPo?3(3eKwZT=w+k8PSPs zE22d)O9x_@X3%7w4BPM5RV}fjr!Z?laIPlJL_j9+jv?>UkC*~qMia5^!DQ354O#!k znvc5@2k%o}?H$d~e(-z<-^5@*pOiBhxtUygRXbiZ;uU}PhWQH0s+GmS-cTQ+kaTq> zjPVt}9u`b?>5`XLi^fxx{5o5W-QK$lv+`n z)gwdq_Il}XwI8dAy^p8xzm@uPUh(4F@@0O(daP}BzJZm;$9o^gi$@@S2Wixu%42h4 z5bEp-aLJ1;`qhDc3MIeIa%WP+w=o_%d+eo-y-rfHX_CpkKNRSB&d%?v_=>Pz1J68( zo4Vo<>QtsM#^ejwmbX@A%=aN+uLeo5wwdMy%?MeryAuO(*89G!9Wi4oI!=Kp^qFp7 zBtTeEr{e;RPx#mlTHr^A2hv&qlM%=Wg*pV6t4 zE85Oa#u9Ek6Pnv&?r$t*eW%UFY1anka?*q?{A+4V#4>GpZIT-4YZ1W&YJIWdmb*+k z5M#MZSbZ_Bxgg=pfg#c#U?0t);}PA<5e)jJM9s#xc8p}KvVtbt%7cl}8#;4FX^7i_ za0;FNiJOU%uXjx%rWCd1c^&y1bTOdJyJ{P%T^~8cF&a^=%{IDUILLWTkit#^=9)LF zdg7fI1K3%~$uAUj}i{&9-fw^wQqocYl0BuigcT zQYj=btnPS;zzI!8L!zJziNaY(6hiTB=-=yRwb|}SqM(jGW&UT*B!O_V#CQ<6!;2;i z%hz?qTVL&*xlgT>K&t^m0v>N=0z#zvrr%r;SyByb|G4|m&h&CNt&aLUi0CojH(x@R zvBcrzx3$3jTtS#cVXHgOB!Qb5^eK}?z6gZiHc$>stA@e>GR(>EHC0}#WMk+v&6Loh zi4+4fSc5l+HmUGdznRFA&oY|OCc;wolk(&bx+U|kwMshby@RG@zV5_fs>yO~b%8we zocR5gnL+qE6%&ZXuTgMoR3vHOyon-H1<6TNr*~J1#IrPhZL+VI~HMVybqsqR~ zY0?!<)%m*)U67SLkQy=L=Up{Ub~N}~_pu+j%fyv)mqTG>#eCidjS85Q>XR#+toO?@ zv-gdM8<5=x9BSpuV&`c35Rdp8QMNZMIJhO8*MN%Rkx4ZR z2aMH43s}Pf)+kbV3?BqNNBk;b@C-kbmh)Sl0{;GbcO8vRl;(D!jOzn+=4l^E$ z6h##z;}IzsPbQljTcuP=!VjN2S)z4@u~@2Bpx!gbGCp+*`mc6R7?#);wcer# zzOE^i43-c%=|WU1&X5=Lw^ppKxiH4;GU*GETO>=>h#AAJ)%un8ZysIHthL`V)Q;~W(Tf_=J^D+cbV}j<@Y1PcqYp)xhEFeh% z?$BHr4!-K&gJ0Rp3I~4^4t@e;(wRaSxXoTT;(KD_JWOtf$a;wqz#HH@8N$Fqf3-bd zbLpgg8@cNwoD|!WwP`59>yn!jg$njfvVU5BG^jiqq`JHfpruaNd!KgL#mS&RDpuHh zQ@^nJ*0kE%hOI{Al$}^@*z5PlBL4o5~DEQ9l7DG`T6A;=ne%a#ks9+z@RqDmh*F%mr>L>A`uk#4C#&he?MYqyy~hBQoFgF;XlR zLo$A1ey}0B-Up|HZBdtBq8&Y5dTa-6bzp27lcwbK1;0!^`is`AP9sdkM{S|NidE~N zN+|*YNdNKoH_Qv{mdF~wp{gBzA8hO(2XI7we|6;e-yEQ}B|8iW`!eA>eK{zTo9##HhB7Bi5Ji_siE=8IUvHz9;eRGs>-t$!MNu*9&JZXZ88#IPJ;15!q0% zO`omRH*wallj>NxwVNiW+JJQ!t!=#c%&!*1S(&1R)Cn>-DP`gK^jG=LL!D5?6_1r3 zmJ#+JxBHeGjJ4%-oywjkULfU!&8!KXgR=d1WG39)AMlJnD^qgB1?58CZp$kj-=;qBT~9@9u)c(q)A|LpDOW}werVvup3UPPp6pe1U^$9LrTjCkE zNqDdW;>_hi&ru{YL~-WAVgEXK+zU72q}ZHc}-D z@K%@I#yHlMUpo1$)j+vh`@!dv_D?TbqU}K!WYPrDc<-_>01Fr}wftoJl;*^SqBC+` zDv)x(b&1>PbY)D)MG0kh5*SD4MUgYKHty(8xgKtW*^pq)`YEh_rct+3cuxKf&!54_hD6O7a*j}*y1{?BEui@aQB#`0 zXS0s-Wmz?J4me4Y3K*4w{;8ShKDgiHy-7}tr1~jEhhVdAJMY`zPdf*Mzp(%3QrPN9 z(a1j|;$#ErS?Fq*E@IKDe?J^b4p+1s9Ht@aX1LbM?o38+nm?A(iI;+c0Jp)sii&S# zv79x^h3~UnB@YdcU!DNoY@d+p3wWcX&}G8+Xu4zPQFX2`&q3Y;jtY|GVdoO1wRn|9 zZUg-1H%+5!C%RW;QE8gyWfBD0OEq~$tuVt@0TVaV*n9254!2sX-$lKX<$p`1dhbm={lrn> z2}RTYP=kB~H86Xp+~+U-%uK}eZ-|ycLUi+DiL`RxZ(`-fS%}l|5l6~`r(NxoHV4^4Qf=d^Pz#il(J+C}Cg2Td`%q`o}JsYiMG8v9A z!ZP~HshJJo35X6-y^3f1=K7_!uS^UEL2j^%<8Spsa)YSdF+HJO^C77XG1Eg(L`qwG zs3Rd?`SG{YV19B8uPi%oq+&*9g|HyXyN;s{r#(JfGxovms zDN4($j&NB(^XS%TGbBfNtoyK7{3X0ZSp`xgGt6m?OPPE8q=ld-hKD=5w<8QJAyks6 z8TKas2TiP;cC$&c-d{oGJpiq=W2l@54Cssp+{ZTEd;Wo|H6rynbDtq{i{KeaRgz`u|_7{ch&#(_HA2*Gbxu{Qxj9&6! zj}yAppr@G$0_8r46)Bu65|B(z_J9hZYa`ZyY28qBOOgcQYs6n)q#t@vTXlWgwOw-L z05ccG1c()q+ZZ8olx^SH_n&b;Uo4%ppG~ctmn&4Etf{YyBGu@iBCUF;x)k+$s!I8Y$W0M)t_#0vMruK+(reEKkFT()_L&U zpz8^93S_)py77NYT@+-z;-js1%v25I;kRR&QgC2 zH%}}Pd)urePyJKCJH^(!n+MFd>RXufzr~&`D}2h_Tj3i|9Ok4rTnW+!u<#PbSPu-B z3Nb;|_Tw=MsoDtQxR7`&3S5}I`=lC_Zt-U41#>W+N`i+7>CDOLfeHz0+4{hWW z^slGJ<(N_qZdw*9yk6W{x=DyK_K)gJ*8Py^y0qHbE?3w*^2kJTs}4q=-&*BCe<56Z zZ|oy8U<9kT-xIx;wwow4U~!2AdI`(ja6RAIX4l|b%VKibtplJLbf;&U?Efb4rf-B z`e?mGj+YU1$tfbQ$5t2fE2U=p5a&3pfAlUzpFn;2hv#<0Si|#M|NiNDTJ-$)=9htM zA8!3=e9?0KUnz}jjoU+4Z1Gu-Tt~T8f4SZ0h@6^hyt!M24du%V>)4khfT)3$y8LY` zXVyhzd$_X(+Xc2ujiu57MJ)YuIPKn+iavf|tX9VnyKQ$TdOe|%lau{sl{9%^BNRv9 zQ!7+mc}F=&0{}s2PBt)Bgd5(OCClv!Rz-CkH3u@NgkV6&W#y8)G$RPoSnz4rn=_o~ zZJFmH&7Ac4S6iCqyBZrQ=y~E7F^>4rZY&q6`9DUd0#E!3Ys)iDp!(I8*HnsM#R(?e z$xU>5W@O6pXW_yineTOetG2pf&Iu$L<*hJI_qNIrOL|jujh9VoFbGf!8_(1JV_tn)!7xT)~tQBVVJ;9efuy%xU%t zaMCza`rk4FKTq-XL|wGo>b6C7oP5El(pw>vFZoXXkN$h2o`3P_YZiDDf7gb$XD%?n zQ^u8`<`#N4Z1Yst{`akcat3ogwdxx3+8RNs=*Gj?+iM>UN@^ZOk#;4fP6>HCKUr@`C}CX>GkcN|oYe_?j-w$R?!I%-eQ3DA z=rDK?F)bpfMrwhHCXl2Kv>iD?i6Ey>JxMu`gA}sPyj+sy7j3@Cj7@${sin?4n}1%z7(B?ZsaewI&&yzwd;Q1Swf-C2!%Rh zBPg`2Xl?}u7AHuZG1xS8C64XiO_7h_eqqSJUP{S!u7|B`|M`l(!Yn&27_(PRgHzE| z@}lH5r@E>YUzK@?w zzE4wHz7Gc(G&mqt_QM)bYREyUAxL;vW0~S_X@*a$W@Y3br&F+Y@Ugo1FxPn<+ng2Wu_$?labvNKajcjS=~~99E}fu`5-beL;csPK9o^JEb?ua{?-1apgNKz$A;X!EzzJBxk3PoCqeW=X^lnZ4#Fb=G zzuKtBlBXnx&`C%0Ju#v+2M;XOS?!u0nTQ5x>J!gb1RQ~!tC;x?G(Urj&)u1Bep@np zG@(M1C5aB#ss~M)u}=&z2Tx5^%m;ne{AKE*@NSB;Yxyq!G(C7T$ zJcF>hoWc1 zwRPjG0dymSN`hyYjvW=1dY1aVa*NvXW`|XhSklO15B@Q?FP&o#`M$=GX7@GXpB3%% z7b9-*@lc$08*Y;ATg-f9b&>}x)NH<3ez;+oCIn0cSAK{Msu4{t;KHt50kNS7VnY$c z2KC_m@}j8KdKNUqhPz%EAwQLXWxbbYqR6>ibL&YSkI40IneaEYCeeJMJ+7cEv23-2 zQD2rnF%g-pWWKhn_oq9!XMo2Q<6o~?z9lhvzelccyj*-oJbNZl2q1{Zx?BkMXax{N zd7B02-BuPfuMrm;;8gzm4E~T@Q1^pHA{wHd4LN&6M;} z{UGy&e>1(!KFKC=lkNyEk*m0UCfRGNI}CY;XkK5gzfnQxZ&c{z|1GDZAuZoqA1{PN zg*H=A{1PP$J7WO6kuKHA3F|b$odL2WfAG{V$j3eG-X&G$hAoBF59o6d@u{T?t}$k4 z`hYh-w81BM{gDZ59^{4>dra z`}^o1c7kS^@8-fV6@^sq=sX%S{emZ5Nefni1sC##96on_&QT%osjsW}zFsl>?th{y z>AmLa8GWId`5q{YRQMwQEs)aY^G8#WGC>^~wQNl;`#J`+rD8?rDLOt6bru@d374Lrd1tLBh{`M5V*GNkM5@WK ze{d(rm(P5+5Y$b(V2EQZKm$MFF@Kv7@Do(h?P^mq57cOG1Q7*X0sjM^k0Eo4J z;LRfjG+>tXEB?K8&Ky1q?^~&-m4h}9_H&<3fZtFuxeFoc}8 zfh2*+hxU{wBaf0Ap~D__g{Wu`OS#UGA8XhS`!II_mba1uXD3Vqq@Pj0fSEA@-&RKO ztSMe&EnWYUNg~SU#$kl(MJ{vH+>c(QfUa3$En_J{?((>$;%;CVSPsR2(gqr0WMj!tE zomA>*RzHDe25RIoIQCFE{i}&*HmjGm1Al`>y5BENSnTwse`%|ip=`gg(2=2V_nJz_ zWey3xAJN{{zg|Hcf<}cV(x@oVeJCtBm6~S)Dpk@DP>%*vvHw>|usv3muZ+aY?-&B61wT{g0 z6qee%z6JpTI!SCKvJ$n6q3O+s{Kn|MeKR`{_?j6iq@Zjg}r|OYF-#j9$%zb)iJlg?G!Q1 zXTQ$>q_3wCaB*m0@b*K0bn2N7G%z%g1_sa;>XW0jQTlZYrDme!$54!U3~EpH)BKVa z7B(h+QLwE4Xtoe_Cxj|4^i`M*4s%Y`Drk@o+e)Ks&?aY$+k zNL`&0mahFKlHG#f<0zSDI>(YjPz<)3Obv*B({;ak-iA+^bVAJD%$I{~x!>-g_Qog$QwMj*-1WG9qQKIyPD1*c2g-kxf=+ zGLj=&#Idqham?)O?{&Q1pWpAFZr!@+dAXj?>w3)l<9?U-^dVm$=Ku>-7sy#RQr?>j zxrclRLalDkm-lmNTFQC3fg7)*X#t%cQoj|(V65_T#WLdxZ40PDJxGD}A;^shidj4* zZpc1Kcv(XjkrNr|@tZLaR`sAS?MEc|6@j7Yq|c!G%6QEMJknztdoSHlqTrZC&bS*( zSZ5w;(3MaVZSDPCy$y@biBzM=QoS+q;=Z-Da#mSZ(;r5|LdH*PKp$Nc^l?+IvCsAa zGMH>F%m(~RjK}4}5Nhyyf6KGp_|mKPr2fVIT;1vavjRE6WP?+^N@s}_g1(euVrX(} zS8}m6^WUqvbtWtGi#yOm32Seias&Z2@uk=mvw$h6aW0@U-J zw-Tu`*FOK!yb0pZaaNi{fc0~mx%L?=uI#2|aF;r9Ps5rp(wJmJ`RC=>Hx^bYR;KoPx9j$N**64*tL9~3h41xKijqTK=qdxY8T zS1hCUv?P9bOVkB*M_Y+3sEwar^vJV|&uAc~hA z1J6lZYg@y<6aZW(z2)ii(*OH=73oMCe?Ihtku%0?m`42?iH(iEN55B&{|;@tg<_{* zk*ueL+f10Jjz%bR8b7BC3DQs zlTC_Zi|ShmKaGM%L2V&(y>9+n)vP8(c9AHBc8wQ#lXXL3=K4{{Mu-Ta^RakXMElx~ zw5i4P9Xso!F&xK}Kf!D55U!LvrC-{6y$>ALn}Bz1$C`mEfNiV-*hY()jx{H+o+H)_ zJYt1-z8nxaNqeG5EE$@#QuF?JYA)<_eePmqO8nVHrrjCZ@bc`N^2OG;^2Omo=I-|8 zX4mDG|K&yg0zQ$Ro7BDJ9U2uJ%q+dG~UPcb|@+0XslZ@x0J}1Y-h>70~dQ zF89>O!GX1o4A5ODsw*5!|oza_ZuT7KSjsPxL@st_Fh zA!S8Q)*0d=Y(z95<(f}|ba5wvTkQfpunCmExf|%YORw##)TgKe>=acvoHfh{d1raA z9s|$G1qeoLzHb0pV<~c@m;s@~tXQExpg#qrny*b6klOepAb;N&F`1HXhlA&;{3($l z0A24j|D~fn_MQOUP)(gyl8VNvvD5TINPDS$Y5qLm&8D(dOElU32HljXt9~=`*VOqP zd$uTiC9d+E1PcY-9^>7+-or&=2KXe;EYgH!K*Q?Hq<5>p!NUEegGFS#E~PNuAZzo| zOJ5Iz`ZOMruz#Qxw?S^kK1X|A^cFHnH|9nlrPh%gbIp>|P1(^pO04z|KdfUG;g){e z;{yqaCI0T)9pcensGE6r%chp;nb^v}f$(MZ0by3BHMC5w;SLh=Q9-0`A zuO6qx)1*F@1$7w_Jhi4LpGx3R3YipN&`Tgepy;*MCViiaEeo0;JG>b&#?iC&F}5ph z!Aw?C!)^$XfkiuaQKzr-s9WCs5z|@u+JSYw#%FhW3-I3@ z);~|Z_S1!}nxu=aFd2HW!%_`u8!VS9jSxf_>PIQG`XkIW_8UMu?mzlX;Gc(ezO=tLaW4>>_ zEmRVe?U?pAhjHOxq)rUX$loF{0ZKAREQ-$kxr1ywdEf$_zFWo8aS1e3abp1PUrIIr z=PztcCjs4Bco0q4Q+Xul5?w_{y!6DR=aGU<8OE>=eFq~xs8oG8RP>p;EOKDO0IBp6 zaYCsmB|Yqf;M3`vJ|4>FiF2HFtm}#41Ljwml?My8R`TboKOJIJ25?G%f6n{5*B&wA zM8n1%su?p+*>Q7WeEq4Vw=?hGS6y&HL4e*kUu9F@)M~K*nyR&^AwP0VmT5${{VooN z@NV!&@q(&dPcVPM391_GE&y3kZgHO%hy_DH<1dc4nu|7lmCH}7O@4SVdEe?9KgeWA zrBM@%NX32Lj7mjpzs#42pK=Kzp(Zerb$i5La)ueN@YRFG;2?1_8~xC8=b&7z1#z2k9HYpHVklq3;2R2Epnh0<;!9biYA_>2fUzISl@fpxwQVsfv#3*;Kx<14>332 zIsU}lf(B6k4S$ZQycG+&v`Q^;JT=YFup7(2s&uS91(gn^oc;H->ekqT4fV+lW9qU& zL?r&nGKw5kfH-Bb0yFBbAGD^dGSrV>2{8f71GIjdw~#giuW|kOT^$xg!wX8s1%6 zp!}pfSvz5|C@SyF7~Y(63t>)~rnS!kYm1unb=^_sjuMnZ?f8=4xy}5er9h+TBk?lz zZ(lQmdH^4!|DaFl)8vD#+|<*=g4kHtZ-x4ULk|6i7hpf^AmE6nkc>m96X0SeWFnD1 zh;;3cgz^th-&TVZ6qW4DKBQH?;v%;y=6YFFI{->*4>!YM^x)egZrjm2(kkQAxJ+Na z6(>UtQg(BB(5rtHA_yJI2!T`o7oMr2ng}3Q;n_=Pd>Sm0&)0D?7Y{G3ITEpocrYWy zM%4MJ%2=BtwsKOeFmi5)CeFy=1Tm_)V@1%hhL9;eZlN;;Y_5G>q z6B_Rnb6mTN3#nmJ^`*kDG0dIBj9a~z;<$$Ux2r4l-*a8w6JXR`x*l+qUJv0*v4uLZ zZd}t+uHzB>mJq{pBC#c7Zs~a94W~yW zqKX0r;Fs&5>M@dSPKCS$OvR(XjvKW`uPm-XYWS%Ezz_NAd!DYqqzbm<4Mj#E8a7Oq z94F&>W|{G_2P9DE8hQImj{+4WEes7uBCN?b9a(QMevw+H0R_ObL@f|?!pl4qfI+e@ zz3Qj8p+P@=tFae3D;$Ud8O(P8!O9-Pz?{pY(Ad}o17a7Xtsf1NKU?#DWG}j(I;Qm3 z&F7^y7MT;zbRCH*0-#~tw>itoV`al$xU^54i9erv*zkKoDyhHk;Vy_^G_q&iMZr|T z9m+IAsh!dT_1)6*o-KWUuajRnv%)T5O|9%0sm0Q#2mq}}`Y$?TO?&r5cr~K=IbeiL zKnts>j|AjuktdQ#b8Z6?ZgH-(g16b-CU17 zgrzhI;1C9&FYGfhVratb8b_LztLc{8)wd8pp#u%7){fAJG||OSJ64t8o06dq%hfsE znI#cZdOn!o2MS>eZNh^ZrBRpF>$^X#R92V%RITYb+-!{Z%~4r=jE^0Zu;k^&B5>9z z`3`@^3hf(TZB}^?73lM- z$wD2)bDwm4$SK>NdS9>|zRbEC_rX9A3}ZZ*xt`zpYZ7bF-vi-tfQlMN8g4xCc(Jad z1Wxgu5+w1U;LT{xhwG*d)zY;J-q_3!~{PV1gQjNj$q=W~e3~s*b~$~#eVos`hRRjRc%;sTu!jjoN7zTi7;L6es$X!j9DAaLk;ZXR z|31w1R(2=Xi6>F0{^ix8O&L!;ct_X?Km1fA?x9ZWr6iy&_$&rH3s#Ap^eB5#)%b?0 z;x<6ut?2^4SJil@L?jJW4F*5(D~7oXoz-c9H7JM2@KN@Vx4VdBAPlYrqgfoaXZLd) zIP34>ICu5(YE3@!U6t+UkL-OjFI7zIj|D91004Of8vOF?PixQ!on@*QYw$AKtKx>e zF@xEn--6kZ88B>EHiopZpknMYtBrPl8FD%If0R0}Pvj8Y?-S;rQ2*Tr^Ox);Q&RcP z8@!;yzeVt2HBZdBUb|$-0!o>xmRR;MK@Utzd4j<>cH5d^Fm{m@8?@@c35ptde$Vx(()UK;d)ie}zw} z5g`-@{4HzWNBW-x5()x+*t@6nZ`0iOP&hWV+wg6{|B3dkW=cz;X1I!gz* zcNenSu|Yzy|J6*^ngW1ddV$u57ifLV!jDSxJ1`wr<6rbH{dFABC;+~cz)t$WpxdeC zUqIvN#&By2gxcj7rw=!u4=X;j=8KOl-gscD71v3pLZfBz@V}>Pz*VPop?P0`avk;v z0B(E6}8PGehyyOld6_w1~5L6pczSV%Et-KVE)`d>X&1==-Gq4?+5%8br~p9vXw2P2GWvOmn*2Nu;8bY< za!s>#lr!zhaf+j>0-^ZMo?7!dd2eCDfy?6);sb>y*aal%0qlaaLffDD%IS#MqdEw9 zgQE0`F^#=QXBBw9)DqIP0w#)~D|!2yA_4Z=|j6G}wGp|Hm5~ zp{o>bH1z-lkZ!l)x__?ew_M}hl3~8WghkR^%^Kdknl-fegb2Q-dDW4)PBY})R^@>m z=^1zcBlb+tmn&@EMcf9O@eC;ewtIyyot2UxAOTiTGxo7j7Pl53AZcUG(E zBbC%!so)%1F@K3%Wyo(E$!l5RBi_%jtYire)MJ20(ey3C{D>vM^bF#_K)Err85aTC z9-*2z*z2zBk5hj-c>VG{t;)164!DXZrH~!jiVpEf!B^hbqgT`>HY=ch1)it?99hn&-!B@P-wS&;od^165yu%tA$W#_tEL& zbFLLuy$0RSa4o6;dOXey@=B56omg(167VK3xSPUUj#Kdtxx8y7S_a5X#)Ug)FG&&1DOYrf@BoX=b2v8K}Y);a^&XPc zr0;V9}*Z+XuDUq46=NcRS}yaSZFOaBr}!e-&OIB0t!Lz$RDjXA*;bP-AD z=e;gmZ4&o>G`f*|#98-tt%e9}n0!oY_=a_8yxv~g#Mz2WcTW!yC-Al|n)5us+y3BC z*odGsEhwT@P|%q#yq!9HLzo~}3cv)tRfE3MK!CNZwbYrY$SRS>lEkaiu+DIl_<1G|s)h0=Cvv!r}Ub)1Y?9 zrla_mIyMum%Qz7IpaKm|UU5LL$o%T*`HbC6sOARPOywX_apS~&ctz*%uV6j4G1%aJ zmaBx{Oo3^@HtYr_)PL46ZjuC}vy2E_)CoBa_9XEHtRiF4Zdoy*L%spdN!qzQ0kZMb zt#m7cAJqZgf!bp|43r>x?@7dr+)Dr!apl`P;y1zEZPbVw0;&{R>@AT^fZzxWgb%Ut z`|BMoMzgRPIjM5ivL2}F?d1op?|DOe|GKU3r9)Moh{m6UBdSX!F} z4@JQ(cGWjiryhSatzr#^MoFdBs0Drz|GB-d4Ar7O8rR!w`n+^eQv$|&-N<_7Wl~k1 zCyauMIf{mlTKOT3OCgxybD)u)q)nD%az#OQiSO8~fy;sgSU)TfwnQyClx^Jup9#np zQS-h&m>{@n(*P4NNjYy2#jy}TEJLu9?9BWwHkxhc-+qU@V&~x(Y1REtlz7|^LT!J^+5@S+f3TCgUwr4aNeR6u{zA_E8wR>1s zL?@K@^|%?Cgr4d@(veW)j?xN!-6AmRd2g;O>~dksaPHZ^!=;vO<;!1o)9){{xMsPA ze`r=1qzDI%tS)dZ^=ujYr<{B#Dh(67i}NOI+qjbF-SwRNmy*fpE^VY{dmxoNxNPuO zQhdoP&3q|b`=^nZ+4sVawHw!xk+Gg^RSk@PK> z(=;%t*;lF^KdiN;Mx>Y9?%ykwH~0kuH5>*F7iN+8r?LqZQ@UpBY-6y40I6<2uOVUk zq#uIKV;LGU%Z7e8*?gn{xi(E=Io;UsJ)sFk&GggEhwCBrSm_SB?oI;UVX6&g&F@4| z?Ei3gHsL<|L`v|1IY}FL>rL#0LzxO0i3}jU8qh5M3elfh+YT1x-u*I-r-mXkKHbSr zs>2ONK->|6lx?5-MgEfdB_SOCeqyp;v5Tg6PZ0b{1!RnQ;zd~&bz-d5=rI=liGq)T zNKV@)1jXjf`_CQ{#@pPC?`d2u`WF_}@hKjNj!lt4@|o2)>bd@G38DrJANM{Z-}fr} z+S=mG<^ZI`e%{r5mS<7#=13pKq|`gmMOrcO$~b-M2Ezx5c>Q{t_|Q1xV!IiMqAZGZ z2e(}DWtc)DqzlWZ%iL>gcn8H9!Maq#({If*&ojy_zsB3jQPFgr;dDGjn#W5s&%3lpb@Saw3P#+=Yvy@mw8;H|xN8L0a;<^340#@yHR@ zHwnDux0Is9YHDjGJvLRD0{37mdDF)CoTL;0m_-I&U(uvn4Mu|Y@#Qs{8Y0ZylEfU; zvk2q7-m27)!P8*qy5AEb>=yV>=tTTfAtu%{;ty}HBva3z1Ts^DtG829W$S%Fes1FW zKxS?qC)(@y$82kxCR`$5A)#uoR`v5}jLBKi8MkDO=c{v8WZ;Oh&{%y9x3>^ zs>*a64fNCE#FA5Jo{u54t&P?>WeBdN(%SG9UWfY>NW^?7^!4fSE9UgQFD^`S$#G$( zUCz^1j-&$e_HC`NEm%x~e`;U=;ZTCuSFB3g&nqTD%8?QDD&%}kX3~|)<~x?o+ukR5 z*k#=|#GX)%gDLm3pvlu{=qY`03a{(DVsd#yp=|a^=^##;*JEdi)rP#y$Z^CzhZzU5ay-S&j*MRyfpiRvz@2sTITbbJ;39uGP2Oi|`0T zqo1&^o^!{{9%nVX_XjV<7XrGvq^*zuh`fl@>lPi<&qGM>&mD(^!u#Z*?CSnZJE((B z^`w}9MaOS3J9nb9c#~%HZkrVh5$4I7>ER#SMH>+%HlvnuC3fuK~p?fsfh@=AjLb+mwFD2>L(fDvHRyv3<=JyH+9j^Ya(9FQTnDrB~7fRQ}SQ1-PZ_u?DFpo{A1 zlJp&BOn3?0PpF)Im-flywld|HK@h$Epm1q!WDL$?aV`}UdDNGAP)?_^5rPBWr!Olm z0?Wz97Cs?~uKB*Nfm1J!4`e6CTt=y>;giJNrA+1pXu@#WiK4w!Ez6RK^}6b){H!Tx zo6kTIzRGS79zu7{-$v(A)N(8p43+O|PPkAo7ML00Y9oM{I97rAnO92V(E#pctJ~E7 z-Q!5a3=4vpBHd~bY{=?V1-1W)bfgW3=0hPdO7;mUnM@3$>LD*%X&qEbFXhw;2{v-b zOT84-D0+b-SQ$gI`1Znt0Qrnkm2Xe@<%kkN8Zraw;jE5#|6i~+(v!pitIuHvqyBJ< zK!Q~k&Km9^cxp@$k)@z}9?+qrs_a<7GeZ24(UHV(;9*YyC7Rt}KwkD`Tf4pdS~}|< z+)A!kIfP(wfQe9_i{us!U(R2hwb>l5_l3=MoWDz9Cvj! z4m(R#6&q^AjCYqvHK`hq=h-`v<0jW@6?WUXS3YAyfRwDxlHM4I zd=PnX4bmX?PlS2F<0ltzUG}~MGO82-_z{ino3XRJQCA#h z6ERxT%a5Lal^$e_d0sG*Ex(kODtiz?5n~+iUm$*Y-EqVBSWJMNIz`YQ2j`ztV$B07W5+(j$3AHqeluhy?DS|_Q0{@p);?Wj3d-%BJI`MmW-k>l;R+XT2>y z;zaUpMpS__-;6|Vc*XT2s&QUF|FmM;Bbik$`rw!D^<6sCKTDb&BS+`owE}x&=KZp+ z8|lFkG}My1%0;gO(eLMN22%A$g>f6es7r|hRyTs-9S5u+vVdABjsC{qPjF%JUGD1v z>W1;Tzu%$J=(x)a(hDy4iJzhxsnLXdPsl| zBQWCoDXxRcz|jd1{>g&JlltbooRH+KN$k^*tylg}kNba5j{r}9X=FM!o_i1hp1xT^ zcO3UV>Gi`UfBl#|V-UVl%H-r-|< zCOJ;K;%Rv(kXqEl-A&Z_qvb<2f9Z;x8&(**W|CO&T?2@`3V>+?)VA?hYTHm6qm4lv zKy6D9jN1g`D#)_M(&L9O7MS3uR!hK1MkaLycIoI0I*sy9=6|N_#%$i`$V=9o>H9MD zCe2D+&j&Z7cjcx=P-uqhW)D432-F{KFM9XRd7{_oo_m&qsavL%9g6<+mL9mGO+*K8hsG|r9pP=(V8?4Ex}X*poW;J?2Dl>&BZItBAgl)|4kuMDr@xVWd4k* z-5FikviC?edPmMWE$@EG177Q)fxrd3X!2T`8bHw6vmPUI#r3aYU9a2&SPB{4jqLXq z;xW+-&&T;|CQ{bISR!rJai|~s?x$Y&y(1!48ym>@o+7oSxe=1Kiiqe=Xo6C>^b*oD z=NBOMbjG>26fK6NtQ#S;s-NSo3bg`zK@t&ae*9S2?hCvC z6nU?mdXe&Q!*m&1BZfD=P!V*7N+&8*@|+1_ijO~zkg%BPdX~s>KK0x7rHfPIV5W-3^GxS{Gn^AA+>*&-($z6cHTMPx&v$&-}{Y|ZYzN6cDH6F&*?3U%1@ z)OXGHq*TlHF8;yW43z4RC=9`QHsDnPM~w)bWa!=v_|!PXcH`DVwa#>+JPRQxx@y`nAF)8o|xDB`KQmX(K00t}o3|Ig}o5n~V&4G8C8L$9muKi6sB}6er z)dIl5agX$p^m^~d{s=*hGKQ7a0a{_2B%T$4>xG;`ipbz?vj+AOm9K0vg_M&u!YTA7 zOTAWwpY2BS43T+#`D=gssj&K8G!@S4z<~oVA-pS-kP5X0BTdgwVCCX3;(J&sm?_}e z)sy(n$vBb(6)9In)WMnE_!)N0zyz$6Ba zDuLV@QoIrZ{~F4tUJGQegejFwfX`D)(gswSLRjwO_f!^JOOOiL+_d41eGNrDGz}eb89YQTeV9WtfPcdjK#xQ zKgCh~4kjtR)r&!6pbMyOVgXQ=lVW=aL|KBPm?@?sk@#N9+46MZZS+1&G5b0Ri1%q-`}x2NjS#68?*N@wpr@00rKiL69<`9Di`CQFGl3l8QTn73aef3Hzti{?Cjem(U_&~t)zMCLZdHJ$q~g2%UfA7#dw0H~A>x(E@T=I@VD^!XqA60X7@qk-$*UD3n42vAmOEGM0Svmv z;;4wz8e0UAF??;$X?lL?jVK`(e446x&h70{Q#~&vcwWaW7mvCS@cIQgKm3VVc>p$K zQWkpiDuV0&FM>;)fKQg7aS?4eyp(L(O;o&CHsFF^_}-q{WlLltKQXQImg>b1D}LCQ z^#{I1e+)$M0zW6HI4r@{b5Sw!o5D>{(U@tjnT&<+vaad)7k)}5 zF(46wo3fYuRSc^tT-%aREmteOf|OdZS*E>HoTgVJMS?p83I63tS`}c>b>trioJM3U@``K}h_{Hhk`cYWu(Vz2g{$9#p!gIT& z_Sybgl|Pr#v!LU{A7%cRL6^HL{+Ivya=K!_4Q-8Io*Ye4ZC@TAo|k2c&xM}tFU;5} zb(}5#_V=2-Jop`Zw5`O!+IcdUGL|opmG7+evY|n;6Ljl<2KD-9f#!dcbap9B#~{(* zUE^nU?r44lV4;ia`=17D$6dPbhbRtXw6Aw+DyeqNN;C#i%jgB27gR2)hS<#3C9ROg zuHJ*vRO7Dh4-nr)QDLOEQ$%X6@3Hy@?GJ$v;-|~3Fpb4j0!-j@f@qDW&w-D%qHQtV z_$j3?YrQ*?GgU1@H^k)Epc4igD#NXY;?5tq#s91zE(gvFk=9^eOc#4ob7#I0y&KbH zC!R<}%q(a7_Kqd*EmwxdXuz?Xzm{qMg5~H*E$k&Lr$GYWg|`+^f6bR}jjpg$TOip9 z4tTI}n>=wS)hH%p>5VLIX-SC6QnuS%zxkI@E}GYMn_c6X!yCHT2>Q@2!`gOxw~GR$ z4*sUYdpb0ttQup^K)~o;Ztm@`O!vm`2qjr};O`QC2AQjrkgQ zX~Ue^on)liWgg|dw7H0oNCG)Y)V&m11HQ=I<@bZ#jUMPF0ViZ$+v!6*)y5Qq>EnV| z26{2J$eNc1?4j_hTQ(F2j(r&$^6Hi`VNg4X2Eb;Nsj|?hcnKnEVhr^1df)ab?7uRA z%`Ux-%`{jRfTm^c#z?PA#Pq0+Fp=OkVITaaAo(9VQhTr(*dstSH4bWzS5GbnPkufL zl&b&l$>pL*EVY+Xu&w|^y?A)^XPis7L~dzu z?GK$`3~X7U*mmNkCVGTicDNN!;l4<5nJ7}55Oq)Bow^iwqQ8=0Ifs&#!0^+m5f?6G zzcLXR#4!NmxzL$a)K#crIYJ2aNvz}MAx$qD?JX9^bUh=f$8;io0`=-NgFYtn)VzU_ z8R6^#eyV`yScCTle+uCJhr8t)A%mw ztR4nXYJv;X<1$wV5?E3IEDg+gBs=o}#b^-x34?(of_#PGJq%xTq&Xfz-c3>i?11

be+Nc&yLn`S1VH_1%*VKb1mB}7o0HZQ2BkV+TR1mD+4 zG!&-iSXLY+6QN#<)Fgjtv+)+TOrHp(`WV;R^G(Y4-okQD<^@&|K?Q0Mj{W-chV#IH zA@jP0Ob&Nd3B|!|Jf1yaAe$L?m_>z6$KKEe=4d!_h|6?)MutKrm?}`1L?9C`{EpLI z6-z%=6QiR?W?*Xj=Z?!=#9ImX@;8&U{uCZH;AK7?O?R>Ml)LYdQY_{*F>uVRUBh)6 zxtW7(-FxKmC=D0{`|&&c21>%$WR`ys>GFRT zKxzV;0M6r$iDp6qIl_bl`52WtiY)C4YR+at6P{iQH{oT?>d=$)u~bsrd{TO*v|sKM z+F$Phtp<>fsrl^E#9zf&Ak^Z#Y(^kuiyBv@DbCm8{k&ewa`BS7%QQn`Hz3ZF5F8yw)@4MI?+m?Ggy%d zHSWDu7|-pG48zLHRRUW|_@VHBDb3y70i!Fm4tf@zx5R&*mROi`|H|&Y-`lW$gD`5k zFMjh8!*N{P-4OUvNP7E#;Q;-2TFOhDJ8oQ6t$TM=Gj`<6L89?!c(P9z2>(64257d0 zi*T9MGwSQ(^($<2LeszsmSBYpRx=h{!dSI+SIgezd+x-TV8t?FzUnm7Iu3$`_;Rn5 z{H)5vo+wSB(x2cb$vS<0M3Cz;cectGv5QZdv+y*_MhY)Ioq%+7>U3*PKuD^AyK4l0 z@oFHiW^2A;4QHzF#gGGuMx8n>qelcI?3I${Ks9P`v99LyEnT~6UB~odGLNf@t-@8s)*ST_r8G&1fznwJyuwv^Vw|D5crWfw zaz6WN_(#FFz<%T~mXW&Oa!Gm_if)gzlSCRoryO&DxEr z&VOyf8QR&qCT&SJ?Do%Inh>VyYZY!dF{fhcx9xlFFst(sBJ-!~GLT zy=*>B!jKB#XwYBnpKf#Py}+^VL&XBfDl-GkkL`7yap%|B2KNbqti6tz=qU#~p~-9= zZbHP(7X2WAk11RD2RrXlzDfue*Ff(13!8g_n7{lg=8uRMJzmgxW=+7ba?1#t=QfwX zKsIO=9j^&5xeao(K(qNV{ZM>-uQZFgECji|L>k2&&{$5Wg36YU7d1|~B5Y!bUMxw! z-q;_=Y?MYhg1+TC0lgDfLH~eGgl0I9<)&XH5|oMXySA^P;-iF54-$6g`|6+*FK*sLP!KR@1$Iwse{W)&bpF!FgY<`HC17y*yq_al2VkGPT_GEFW0hiBVIwEiP`g@hN| zVACM~?#qV{XH_~vj)ZT4AoO$zY?kG! zOwuQKhkx6V;-v9$|7}WTF)RD_TTfq{3i-LP*=3pD{j+*Z9ZL#D?-x#~CjN^C zY1D2^fFmbz!#)~RJm9}KLyQx6cZuHPxk%R5#{?WLfbs)YpqNH`DuG_RFF`cbGh*L| zJG2Y&zt~~y@qP6~Ljc!6VmN+$UR(NQ#||})uuuAZTahj@M!ntV!6{6oAeRGPlQ+&6PC z?l1mCF-VV^MtdArM=?+ul)M_XhskSD+fSkfQ9}iqLe>3F%6W0$B`yxm1}bAsf0W3eFpBod|nVHeq@RlHB7AMS2uZajq!A*<)7CJ z4fFH14+al$Xz+z^`xLe1IC3eLnJue#9_{ujZ`pQ+&E0+)7Iw6@QZ{He6n6H`W^4Q6 z=@Hdz z@X>v)zxL$LUO8AA&kpFK=>Zi1) zCD){{4Xeaf*Gr!+=MP)p;zpl9rVVAog8q@o%D(;o%g&{4!x*K=?q$@ z;yRzQ=(d zq4HV&!O-?+by(=ml7H=%(s|r#b&s>TmeTg~0gk4Xt**|T%iX2*u=C8Y zu=Cn2%&BOIwf{>e+ifZ3=g&%?oiCQ1ob^pz#3nv-WY?PGhlTy+d>Yi+ z@8UnlQ`Um>1*l4}5+o!4G=|yZ<{nba%FeVT{hL|3NpT|emITdRw<(}{ClTnEBiHHr3 z7X4F}q*mz+%6z!B%N`aOmYu$mRlI$X^6&0~EON$s34ZHG)yK*nDd$f(!!BovnYq@K zXrBQ0EY5GJediwdhI>3l)=a2$R3jF%>Cg-B-M<6XXGqq4Lel(Ae}@Jc1G?<38VX zq6ozBMKqz&Kf$uKtB(fa%_+_zo`QA|u+%x-Lphbh3C$~+UPwaYA ze&;!S~ABd!k^o4fgx zxv%fD3u_;(6D61`d+20p&{wDMX67NEgFOXfEe0RIPIfe4__vNv2nBnT?s>Oe4W# z2yiw`xvwkqRGd3)fF1P+qfy45UpP)|?L&_^&Xq@e>$&;%7DMk&J9qWJc>yh>6pBq{ z$&Eq2Nk`a-qp(p_HmdInVt*P!#wEidk@)pVJ|5c_gu*kSx~fFWhz^f^pBF~*Tx+Ct z9c-;s?#{K<53bV?s69Bn&4{y6ULZ#=_N|~~htMr1h^iE+a`UBND5@C~z|+KTLF~TC zYp^t&ILWHzp^`zhuYtK8vrE&n_ckL%G8EPOhxdt-sSz(%TC5zQ?*WZSxqgA4=LmyQ zu%b8D$WKT00-^}yG~vLbv5O?aaOj#d=Ln<%o-KVyj$7`-jpJL&+V*1?S{d^Fbb#!3 zx6_#CxI$*)IxXUdJ}mV0ND$K#I`smEkw?#K{G5zzzH$5B^l0PIAK5i}+dbTvYqiISh-W{vKKyie zS=1Exi=u@?N%MuRLS&z(4jL^>R42p{OQ&@D&l+O^{zCzY#S8B+@t`r`V?>Md@or9t6%<>avxQ+lEHezhijW3a6(h*{k1RJZ0;uXiJ`WUo=> z)~@LxBm3ydQN;SqSjoDO8l0KE2 zi49rv&_i7Zs4G^^CwKD)jp;?W-zY3Sy3GcQ6733#LTp7OS$VRD(H8fr3b70rSVUw z(WrCJrMFf@YeUvZ#vxNkxJJe}O+JT~EiN8hf%>X)%WvGJlKmRSK8kbyDRirWL+D zC4)-51cQ21596qtz(vQrq}xxS+iq{KYc2&9#g$eI{3R8(}oM2zgk zD=0NTZ_|6|)5P(*AE_^wl&Hb^CmlU%`8HR^=j2U&YaUC2lFAd-?;?1Hl-MvM{5h14 z@xB^EdAMbghLoOcq4{Tr+uz-~yl(8i{ACFzQ(ZK1x52GvNszZ={C-1ez_NISG23z~ zvG=BMc74Bk#=s5Xq@f=-%pca{O%ZG)de?)8{u-)CI44@hot0JK6DkB|bSggRzOPZ=LE$ zQLZ=M%&ODG;Ga(~x)Ac2vLEkf*0~yb%|4%u3{SEislk7mFtpK#`$6xiPg8cnnQ0mx zTXurNcVP40TSj=`HQy=|Bav8tY`vKS-WDF)cTqeZO57>%woJ6)qn@j|K}OebLq9RN zv6IlQGc%iS&d{!(|ELT+yBAj&)oT@cB6?ziKo?Y)3K(8KiSuRWVk`Sb&tx%G5kLJ4 z>!pTC5pAo&+*7@6uC+Cj^7oqjjjgQ*Q5sy_aulVE5u~w)?xf%pkGy{`d#Dmq-Ctt$gEMp!E!mL>rW1GIoMox|dQ8yaH1=>?>855M2p9lGYW^0kI2D87TC0&y8kubXYRAz940t@{$#a7B|}{x zqVSKZd~VGU)GU|rw!3tSAG28nzKrU_pzYwwJ1ED18$yj_;?(Go8{g#c?l{Rs8^pw$ zI(zR_DOtZ2g6kJjnXWd!FBR}S;&5PHi$lJKksCtgw)s2jaP*vl7Pafrp>i8^!(Z&V zt@hIhh>&Oh+L?TMDA4Nak&t;QXtxPQtggar%_!1=d|BMLF@7?d>5I$Df-JbqZz*c} zmpe;vsP)_2np~xYeQDLSLro>6Oc4SEyv-sKLJq@RMePG;D4!RhC(noZ+&L<3ULWGA zLXp2>Jke-houOKQvYXvAu7{YiOcZ^OH7h(X=4@Z&x1P zrGWoB7vFFAD6QMC9<#&NQvT*2aj%&1_{v5{c*tS7hvGNF(eGag#&0AKtL*h?P_dH; zBIV;6GxKs}bJa%i=@s9xHE$|SqY9zF8D$uaS*0=rt8-ER6hulA;ItJ?GCF-+(dok< z@94$ImB4*zMN0J3JOA*3MP7nMN=8v&k#w=%JBbvB_f4zrsZa3gxfG>lDM;AN`oJ*X zAG8|>6>2>7Q0TNa;Qyq_Yo&gx-oiBQi{LNU5slYzBV=sV=jFxV9}uO|t|cOEtiIB8 zBGvkhosX}BC9=U1)!k;0-38c0-#(p9d^U6NXX0z+)k+VxCF)eSha^*$<2WY-h_4~o znxhD&3zrMDJtS$5It8=zLekS#^X@yQv9iRuR;4VL@#t4&g#0`GN2eFYJKWgD8pkkl z-N^11?bIKXHaRZs$OFkCN50QYj7DdOPe}DY1m+>kzA#zMtYH(ajcGFng;%m|?67Bt)q9kt44rPmR#22`f2*Qqgp$G|7$)2^;a0`pqb%u1q^ zimkc)`|~4(@-gVF1;#iktD}sRU6@)(3h90@wvMxE9r;BwLQ<&ISQTXs48C=~K9{$3 z1S9|gNWjMllc&C8AG0;la(g4dir6N3ZdsxCx^KE)z4A*{(qW_vQHx1#xq<@12+eU4 zUP;~KZ%xBs649@mit;=p~U6jo57B3lnc^X z3Fz3`1> zI;1Y0^D|Gz97!|R^@-_u>5>B4o$?1?h17Fni;{CdKK8uSKP15peifDYbo?MhXz9?L zcNPUrXO>W!8zI#TDmPGz`)E)x$mTn_iGuZ%?{kU}NH+CG? zNXgHV{2YnUL&cSRtdI*P9z!u5TRhC;#3KZqHU*0^p@Bu;YHkKxBD>yz*8zvWf2K>O zaKPJEDV`shvR?6M;HM;4*=QQ6Np=b7O#BHfpu>{F^mS^`33ZV-i%JlA%CXWAYvXTR zMUVh*Yie*kWf3K!UyFUsq+KpZU!%xMb4v{@M#8o2r&KR4zdEPFI@dW_abF-mxJB`s zO9E(NhwLAC^^2|DJM0(rc~+Vg#mVi@?mI;$T~%%*>wqMwEja4g^0X|;F93ETRPv9c6TT) z-Crm+P|5>tLmkU>=9xA)%UIB?uer%~y)VQ)DPdZgv08t%=`%+FH&Sqz)LYnBK95P) zJ^K&LA+qq*)WoxOsP8GsAcc#0<8y{v0xN;{lCUE&yk5?C=U2ACBP5^!hzngr>2>MkpQ z1-kFQi4y)4!-$kza5*QMD4W?yWZM{Nidqh@QMg3!Ib?jnN&B2f{0D>ev})P=xxky3ZD-Ws%*#`3_b1fkFY#pb9SD zuL3#=2G(AUT3U8B<}jkV!O?;KEi1}lkGA!$hzwGo7_vsQNI2Jh zl_uWo!|WyD`KlIGow3OLOPU{>Rymx8QsnwYSjLGYHNwCpFb^76cz!m+cQBV83s=`00D=`RW=6*JxajkNZT7ffJS7GWVG zHmL}} zsGNlX%3hO;f6ve|;}8?-m=G5!0ip{!p5JQ_f_=fSfV#B$(v6?j>Mprz*4{u|WP2hF ziXJ0tld(vC!#)J}ZNlymAi9>!T=zuRyM@?^tX~iP(~C#m_67jJ_T*i3GGQz9062k! z$b6^NlLvJeB9pB#Sl3_}t|@(oX!jimGn2mj+L^TCV#12&I0-rjp@>&go*}MlYiPR~ zS3^^79(ZhJYta-M%`U@A3hE53(Oa114QN7+Tw@_YW7>AjE z3CPr9SUO2Vz5A>N6TKL1>?URbY!Bz*b>g30IF*P&E!zB5iDe)^{@Vn&EoW@5x;Acc zip%8}z$|z?(c3u(y>ppmf%e=H%(|y z@^Eq%3|$iUz;^(4fXAqKFTS6ppSDWuoxC8)BJ+}PgG=lBL^(PvKBa{L9h;7{l7Wy@*+)BGM8^`$MDRM)=Od z(mKR%lB1BWZZTmQvC2p-lZ#IuEAT3?QLYtiow~%leDYeH&B{I^<~4KyFV`pB71ys%NEltsz&~jy`{L``G=0uZuX=RJv4ez@f+NDn3?12uMQ;DDvM;-~gh$u( z(0PahtT!DXT~;&f7gdKkQyffpwR`@s*;|3SH%O3B02bS_l23(Rgf(d0KQL*D(X#TJ z)C-$J_HA3VH_~@D4BElm-_!IZ@XS5RjN`9c2O3eb`xPQ%uRm9;NX=?M^%+&3sMT#-?V#t(vVQ&ADRg$$Q6A!tNx0#R5XyTP~q7MT|&4- zNW1ZPh!qzh=6+Z$1y*drVy*HmzFR55BnJ3)_7ReYW_x{@#)A6- zWCJT@?EmgN^q+30Px_CJSFr!Gk1Zm2TYw=L(~~4$0IFHRdGf_fRC1YK(=6TO)sh44|tDLD^({%j9Zynu>3!z9CNF_))E$4 ze|jiTjkXFfQkLs;-*kxB9Q+`m7NR1ej*aDdZx)Yg%Vi8irC%c2{Qko^2qnEu%{=0c z*w}XnR%;2({m_bC@^RX{#Vu6aevE7Cs)$PpawO-~wb~cU$BUQh6%7yI1(hUMPd-iV#?Ar-vVaGsd+3q}@DH~!C;(23 z`$Z=DU1l{cZ;f%pDkDtKNtGYTAPb8pe#l^Jo&IF@N4dPZD(-|-9%%2s4+LU^Fx$qc z4x$RktuIKgVvylZsuBkD!Nz{E%YEy16wu`Pah?T9D5+w>tc1ZC(mcehtQ@f@`ENyU z0;pa3(CdQKNzvtNMO0iK&;Xh51~4}t3adwNT~UO9g5z@0OTFr^LTgN;FyKpk^*EX8 z0=w+KAYk-{gurz>@E82QZoDid_;`|E!%0*yRV~Zfb@u22e@2pr6#{q!bpOjX+beq# z$eGro%;wKZna$lsf_quY^!C$zP?;0&RmOtk$=T7nZJGjE26kV7@OpM`^#(Gx_u$DW z6##J=KtU>Hc25k-pT*n0nY_A|5v0Xhn-Nq19@GuqswWlr_t3zniYbBu%Q3s?zO5#Z z0(j4o3KYi*t_n>^fVMWx1St?|1Ra1FgAGuYqBbsGVoYsp`p zoOBd;1K-EA&XH4K*XN+vh?>P0Qc}_MXBZr-?1&}|$oDu@7Y=KlV_h8a4H#w4a{31L z8CRh?aziXk|FC*$ zCZJ=WzNZYB|0siO0`5Hry5|c8A|c=*70vm-hm;ZJ1aE?oyqG<*j=!>{D7rmK*+m~L zEh~KYLhy9v!NjD~i}9L2NZR*u+P*xMB2`DjmR zF#->jeeTBD3a5nY62<@B2j$wN4rmB_DJVIX0{pt99j)2tjgoK{a&a-@rGS} ziu+fEqV;%*dgeKl*LA;iy z-4pn-qqHqc?mEY9FBtLd$pHr4^Tf0x3_*>8n8im>`nArKZZ*`s%#G5Q1@-OVM4;Hs zh`v2$dawRtik^ho6e@ePP(THq0vrv^VK>d&@)vjq2%}k92w2Suf0UIN6L1yiwuQ3m zFs#SRxaZG(rXZcmuUXnIk+2-3-bAAym)s))5n8H4Hi8VV+0>{CUB2uUEO^d#kJhgO zmoq)6cv8E53AIY01plGX^JsJ2-OjUz7x9cqu?{Yn5gA4YlrGnduSE(43G`Fs4&u_} zZsLR^>Nw8bv8Bx61OR0dToJc@F~`yNJ)6$2`&((>Mfa9{hIvFYPQKUF^-1n;^#%MO4KXYaDBh_< zPy=xX@l7~_LaP5{Odjxq{8?^ua` zSHqUjEOL+Ojk6R@FX((L8rWMRnTjNXf~#PXkXCrR8j*W*%smZ(D=B~uBx?rkH@@T} zljezy=0O)-8iQjhX&pEykVb?16Aem%EMB-foTH7B0KIp>hh~>z1Fw1Ic|0uI@Auv< z#z;*Rrg#XB9>kf7=}%tQETJ#R0`Ta97gbRGW5v^iz;IAA#A~o#2;YmNTK6eqyhaMy zGuLD)f`so`3-wQ0%EYiciq~C-%*b)a{Xh$~5truA;yz{weXDlha(emIy>dv+=`uJh zdLcN)VVB{TA9?cAA;mob+Wx6+1^^9Im@xq~0Fvgv)%|&wA<-TmK!Y@lrsy7L`7|Cy zSzM_zHq_?oB}8usm2p60+6@POKiHIQtyJcqZcZ^_i(D<$hSjh?)sc#P{)%A9sI=|S zUz@M+QWPCzdu@Cd${0>H<*^-07(mA4QRtNHjc+`=35P4Q94H&5^-TLcrW-osM`{^bV<{}EeU=ao# zdAx=>Dr=u6ufnI9RO>HbgrAx?Dw89@duASa%@A@`s+V|E!O`*Dm(DrFpS*Yq7F`P5 z@(&@xg+2A2GQvN93H&oj%TuR;0qGhlz~~x!ltj5JD^=G#xdD;iWL3~2&~QV>kpiW) zLKdOGRB}21ctXMd76iH%O_e7ekQ-;UTqzD>JKLFl*g#jHcI?b*<;hT>%1P^$or4Q-Ft6mSsNE`k@a#3)Ly#9{Ficeoo z59YAuHR8OF&u89_PO^w2=UwXVn(0Mf7SyD1cdsZA=zdCWC&b2d|wdRP?~P!u5eHSK0W>FuXrP?CFCP*E5ox*H?^wOY7u^>O z!ONAd??t_!OP3Ix%#gTlNj6#578WPy*o%TS2j{9z#S!J6*u!Cw0KQXUMo=i*XL|um zuoqt=Pq$q{3HX7yp?Ln}Rgsry?z1Ss52pMU2+{G^U1i3pA}Por_8-z*9L|NbVhqWO zwaeY8Tw3t2Vx$wwY-#njAK;W;kb`#dMC0{@IQ%J64=;lqo^+B0Bv4z*2}B#vy)tLN zhu8FdIODxTPf{`Xu|}j0dr`{NF4S%u)v{t$^%@*9UoLnsi8o-e?UL@2`dB7)x zIC$(gLU{2&cfs!$D0Es2WW^igukm791fK|pZ9MMXKjHiJraTrz=tSb(wA zM3XcLk{34Wq8|n@S1F{T+f`vluG`7rd=i6$+dj9rOJbqi2i<5&9}1(`gT73c(Mf8F zSZ3@oY7EPx?X}Rqlk8HY1IiNi;Xb2*Wp;4Dlzh&FB=B-W@XAP%8!`78?yIUjGGZBR zpTU5D2#=&rN0s2jS({EKlVa-=E_E4THVT6YjTdeCi~$w^hU8lp8w>rZt>^ol zw~@8@)4XS#fynKi3wF%M{u+F>m!j05{;-s~hya`*nX4!Q0tG62j{o@)Q;Ing&ft&d zz$+sQ*@&!~xsN!BrxGpNzAIN3(~|Ed;J&UOiN5V;U~ZQ;-Oc%Ml(fRk3u1=*i>-8) z##5|d3~jzzN+4f^Ql2qj4ddVv0h{QNrDE=#S#zd8F z1;^k23(xdj6SUYyq6+VlPJn!b(LL7^aQygZgS~j-fnBn_yB;G0N)45v{Jbbk%6A zhZ}PH_4xDM-rXBxrMs2i_}?`xKKoyPyXnaI23|0^qOOq6!Kv}jbVo4}i)rR3NwUbY zGSqIcL!{%r`OMArSBzKpH;2WLn2J(8tSOIpfE!||jJx-GmCV2mBnIJ#SM9H^!(kLN z16OKh068?wdc?EWm)>2T1yxAsP-)!6o+9xpSyWwA@1zS_MGwA0=_si4N8#l5*{z`dUBx%whYG&wo7DJ=oLm*P zism~2b>ye-Y-$`kAuSW(iV@_9naUAAs3`UONPO4pOR!mGtp0Fs!d*Zu z+@;U%a~Q(!_0d{sMoQvN$mGBI?-dtPg&Sjp`X$+u$^Q5*Kp0r$Wx!8D^YIzj!IWG{wK`Xx=ZVl17Sw^ zy+$)f92hECT$jAG`iMP2s2^RM3Ny6V6Bl>y{75JSPP?kPhQ+DP|4;umu3ESJ}y0=M>Br9<~uXkSQ-+cZD!33kVSKHMkU84AT zPV;wOPDKUTf}E@R3MV~kZ8GXR0t9!sBh3RXT2!g3>@P008RcCs@%iHxz2PPf`TK5@ zMdV~tALU9gxO1=3#~uxyG>kt25AQ@PaBJ4KN5}NKBD6<) zG3MXRY9d+2FDf!p&AeCAgm7tooOiXVOked`KuF~saR_*Iu2!96z%(w52x zy?w0WpGSEPtPTKU*-rV`9{ztGrQiCiGPY}^Oznd!fcXXXtvCB8*W4`UP>3D<&5I1o zw08K*H%R*8nQCu#JKCD^stnIkpQD$!V`A@m0Y?SIPBit(X9fQ+2*l>zAO@uSG}y2* zSQlbux&6jheEQNn;xVI{sX)6gzlaC+Lk`cNGAun+sMVvb-A3Ezmp6U5)?Zl6N@AbL&hlR*r-2@dXiFP7lWeUn?Q446y|2MYdS?v zu8WG>a>T%m|7m=@{T-X3$6vnlUKB)1;fNi@ZH37Pghn!9haXgmO@1h+)6gIvc5R!H z*?n>0W#ny7?p{38zMo4_ZBH&=(1Nd1R@sJ7yH`q_Y&b!E>#QrY-fD@Nqfj5%8q))S zcndJfpv#XNs)2<(+IRQwkG(wYS>>!=tX;Xvv{|aYP|!;us@RXBzc;p z{Bw77!T2OW^2#qz@;aA6YszEi?{q<7o{`!P@h>AAsN%>Ftd3$zVd^3V*<~zHOJI|RX;g2k z!z4k$`N_oZB4G^{@b-*~dWi?R&wE(seaV5bs#%<{+_c$uI@ayqw@ znn?syNQn}rV&n;n^XO?Fb}*Ya#*SO=QyYaW+K&dz9$fKpT8^$F=yGJ zN%blV}MV0ihF^(2XEp%yEE4Vbv_7`@?J!*{AxAd<&QF`7nBk=+dL zdg?yV6^`W1JX?~Etj(GYDUNaT=PJj!bZc17 zzpf($ z7MM_6U6%ED5%;rmKW$wgEZB5k21~}#m6XcH$!IYQ7XfiWGG9LI&MH>QMXPp%4yX&s zfJXRl_Xs5?s{ZK5)BC4rIlQW_`u!SN)&;p|<*LzI@m=sZsx68LkQaU#xwHeOj4T4= z1uY;iXaRYlunz0OU9QUId^QElwFQ?xK03%(SNwNsk$3yIpzzT!#fdwmOc(1}p(KT=}W&&UW0_8D2q9?3)rhET<@#i3lj?=2OrgPPg=pbHEYZC(9e{y#e zM{D>YN8V#3odaO4T6sM=;DEwW`W-g8@Dtv@amz{Ud#+kDdQN7T{Q=xGu>}A7ssNiY z{4YuHp)KzUR0X$oGA?wQa?r8>wR}I}KakFcr!rfhE7~v^f&}B|JF!5@X{vWoOim0) z?*47MjN19|`@?Ycu$)3qpTs`vK95X4FmEJa-tv<3z`U)0+K(ao#wuw6Cz%tJ0*|X? z+(=VjlR9VxkCDD*<{?Iubu#3i?`Zv)ZYBYn0P-o<4xLZKmd`K0Hb^c{f8AW8gu*ex z9atXWbH9J;pOXgEy2b^oRN}rh+tG4g1(>e_%cJXIQn16N$^Fnh! zSZJqvYO05REi3aO3!JRSXrb}Ou`vnRPjf=wv;RCW*j46l2y(m08xcON`-w~yC*a7! zGM%oe;)V6CX@WkTgQZS{5tN`%Dy;kLMMd@7dl1s%QN;5g=3rar2X{h$Gf!3EC_0(#vm4fG-7ee~b2d=jfS| z4=FHFF^kWpr0PU|LnYyMigO6Z#{UcrX+ulth#8gde(Uytc>nS7;GRQi!e4Yv+We`W zxcYDI2qDh}^-cGNlTT_-+@UYm=dQZxKCfwiy^3GD*C7k*URtYH;9&{pX8Lgy0xqFt zCKtTfl%*UV61MIEQjnSz&%>DW?WZa=m$aLOYJRNRcRhXNNEv;ZgLX~qC37*(KDhUK zFMES@U2=@}+0CCMNm=*u+D5sq-?B4$)&kPx8XZ4TxZv;_u#xH}_vXWo)lWgM{{DLN zBk)J0uDkf&V+!e%!gWb1(_7BK+N`H@lGl7m$5~D)>ws;P7xu7bPzEW;RDmr&emG#) zg=ZOy4&8Ef?U`FSgbojtzg)1-tw1s>yg%{JFV`SFIS`aXdE*Rk+{;aORN44exlOcj zb}2!-$Ia8Jq{2*3q$U1`y(A4o8U)vJ)T83wO~0FF1F=G8@9~%cO&~|$Lvns;a_93x9#!z7 zc;O^URG=PB%a@o3dtS#pe!~JB5$7y*4^n?)A-^EApIRnRbTg`tZl0GQwaV#pK!-|Tbq?h=F_s##>1EmiG!j{1`nJA z4Uzd4kuZ+CPp`;G^ox#`_AOeZ)HzLk)N(0&J(9Y9&jNXwO5ek*UW6m|jfH{w<3R{l zeViU?B}FT)#2>wq9*kIPf&1MLMfXYIU&7D^Ck@g8LLf`9lB>sB`&%LR00StrKsp8I z7hQ&2{rCeFMjf5QQW6rmU2h0ZN?PPAVYy$MJT z7Wo?E{__Gna~7GY%LPf($}ct6X)TF~s`39RmMa>Ek?1zl zpxmbph7@cQp~@#OIBecvcCpYi@Ju@`4XS-tGHv;Rd27Sof}vgpryAoN3~5B}0ONs> z8N;CTEmfk?y$d3tbs&680i<19a#v=)9I$QuS4g8X0iE{ zH{{``R$5QHdj4!IQC-k)&rWO7C@z?I2E~vUrbK*L; zQ91*SjfI<0SAmUSdZ^m`54(jv))iTg*K&XIdZVp(Z))^hBE>jL*;VXtpLmmqU(34XaR^$zVoi?Y0seAuD#5m|^P5O{y#>_H|a<69R~% z^1pPXl@LH28US%<0K}17w|DL?zHFXG3J`|?m9a}$o(eEDEb+y(0cS64?m12i{{K{vBap_^xVJd{=)hna6wlc}G|25IZhGI=FwGlR<~yvB*?XgDcuts4zqXt z#>pc3CA^$5N0}+RsA#26rF^4Nh)UzMi2*ExTfstW&$PnDYxmV3O?PaFgXgLh`cyeAjv%a8H_;Tsvp%OHpxyImLYR6PDlfNg%qK$T+<_h zd{dNy$m58S?m=?SP65Cj;w!F8JXDx@ekuungX>(KGOUTawf8PfVVd#xugOtBaw-i! zN~A8NwaX_!3nEpDZkP834u&{lNX>0>7s^=fqZM2?KYvR;J_x|RcROVq?>0*QxN9pr ze@g@HQkFX%bJDJyoe*q`y4MPx5K}MEt3QkZo)g@FIXQnFX_-{j$BU8{9Qni+m&%I9aaF$kaYaIQL^birQo?%8dipngtsYj?ZnMlj6cahXgmGS zue16ZwelU+3k&w}S@gbw$3kLO{(ExCU-*??x-prpZAULvaL&ryUrRW`UxYhdn%VlU ze7|-V0nva=%|&NG-D90>n1PRb<=H~yB<=FGydzHJKJ#FDgOsePS)>SQQw%|x0~u=R zTzowIw%Kyb0v=gYAXVCAp~BwLhjb;FKh0gOS7)Kirwd*{aRd9SpsgBh+g1X$_xm;L zBv@GYH_Y3buVi{9U-rsuTOa?Znxf^-JG7?Pqup4G|A zuP9F|JXh{i6g&J>6cfX@vs6lhK%{uW6|s3@XIx69vW@eyMqpU`J=eSHM}GgdYx2;O znzK~6VE)VX6r+;*-llYdp$h5>q>(S6@(mJ#AZI*QeG$%t?M(5Ew@}W@#}>I_B1!A; zjaxX=u|YZQKrZC1iR#m2jh7|zCcO&;0pUzCV&btlM}-tgkyCLOS|(aA@oWc_HMt{q zo+X==)gb0=0H2R_X5j)8I9&IXV^$}+lJu3f!Qq4r$W|oRmXm8UEaZuIg81E#?imgC zjqTf=S{R&ZpR6v@vVn-uT@m;9!( zFAy;>aj*C4>M&aYOY)Hy8Tq}T_L=>$w|y^I>LvFYEFoEK91%I#WAzJ;hmZrg$gl;@ z$EPHzN15wYj&6yNz&<=UYU%9VpI`8bsRsxxqnrq|&5_v?BUzLAb~USpCM=-yf@Gu- zs6HWP5d;5{k$|FS)`Q|xzjamrGMy-QjqQ)sks~8`WNl_M>y=DKzbZ>-JbO++1edGn z1t%~fWv3gS1*$Vyl-V*~;jvm4^D+kZ1t#8XYotwW9RO|*Ut=1bQ!>33|8Ynm$vL0S zaEmwXt7t3O?mPJR+seaR5j=UT+r<9Agj;;II#y2Y-q2!s$h-mn2%4$r=38!#>=&t3 z>gYkz-x6rqer3QDSd+t&6uu?q!vg&Metm0QDVpa&?&5|RNMcoPoS>f1Z5g08^ z%%EZ#fa}P|nD49pYMa!n*@Q!OfrCEcKL5wDaccjRZLtp1Ji%G$L9rjEk@ncmKn-MB z!*NQmn0#RK-Gx|wm35c=o8f)hdHD{rZ!hN-o6J5iw(K4illul&eY1p4#T%3II)_N_ zh??6K%eJ8QMHfiAsBn+WKdx*NMIsw+R^j&husXR%U+giZu!@8-7`jQN6Stq+U9;~_ z*#c&*8DBJmk)U-?#ap6LLUPG@Z~wmH z#uyugm3#Jfdz+G|U@z>&Lb{F_QRCkG&S*FoYd(H5>@RG!9p*SjlYsufdmv+Gj$}*W z;gu7%Yq90;@iu6tvuypA9@%ZnpSQQdK`-uFF6J)&w6DH3S!$u~KwYpMaBLZ2nh6gK zxg8NTMraHj+fj%}Qtutau)7sJAa_9`vTFX*d#ySL-?%;9-dQep{Ro@i$@-hujmEX} zi{sDH&GG?zCi+jdFQI`7LAt9yI;Aq3az57;Aqt0V`9G&K7hZEl_@Zh?@K89EJ zKRT`KiPt3UXr8@DHmA8$;oX1gW7HlYoz2EAvFEv*^i@C*X7-v&COQaGC_OK!s4b2) zy>?3f@0gW;KWg+{Jk~`B|8P;M%dqJBuTiX7@(EhH6+E)Ub@*__T90HFzLlyF;(6S? zI)e7Vlyy!ciPz}h!ZF`If7zvitW-Qj4))282^!8DVdK|Amm+*|QZm;#(i%1uTQNf) z?%FfhSz_RSeEh>&Q|xx0+Mn)Q(UFDTk@Vg5qTB7y_tO1eycbgm`qp6q1#^Y%O+%yj zTtP9M%Te}MHEG}1gTXMgkSgdb$6a(4cH?};c|@S{mT9`vj?Y$-Q5 zPHPY%%+|X>@MO~a+e3PYnE7vTA$osmwuK(0#AKwtT|=3$DTWTWl}*#cjVpRXG*jP~ zs8-eCDFq~Ze&0wot4uN*iZGeZ$zEC(A&Om%Fw*^0g1lu~c*ST)@PwL;YlInN%g-~na^yRvtD9MRA5o(WQ)-ib6Ppx6$sjSjb=Jy4-dt($Qk-8&vReLB$>qvSQ4T&{BFQJx6>o$4*sP28jn7NZ~BvweU2mc7YetX$kc5& zp{_m6c6Z5GSJq_%n)8?D66B$$M@KHjKAx_m1kaEwT~RKH>U5Lq)~3u@D|H}4STq&a zxD!9!$G&GE>Mq-Y6wh>lEQ@z1Dm6JTCbf9S)4eu)p*f0g8TK>2_iuto!Mlm85UrKD zK`xP1@M8#t<(z&XnNZy_llOb3JgLU<=8_Kspl5>MjUD&KBS&_XTWE+V(pc8=3!)FZc1|HjD0M5EH| zOs<1E-0bGyQ-wE4lrw9k@Q6@01&XY9g&;QT9oDPlw-v%9K`=Rc0rqg`rzGcWscG_l z=$^icPr@92xAIMMah@nY6lsP%`t$m#0Aokt$EVC+l@4(^6Mtp(=-fw|V?;@*BKSy2 z;$Jl-m2;J8u`t1Z6mV;^qbEh2K{7EY6%Xu1P89tGK2Ph}Kz7PuQ84cM@2NyZ(o#i5 zBSpeMdH_B%A~itq4oxwUkWd(rkVwG4_&D==z5oX?{`Zrg$H&F_@R@27^%LUHn8QH~ z*E|O^wL?9Ph2?C&;$3`fcwcQQrDf51>oQb6#0d%M5!)hWfOt1#p#N%(Vo(Z3Gh)uT zr9>5JoTqPqdaJ4@R`@t4QE2c9_QYphR~glC2G;PHcVDqs?WR3Y_FcfLn&U)f+6&io z5dVQjFjTC=1=0EL8T(LEnazmk;Zo*%(WNx_jD~KeS*;6HGVwyW{ zEHl4n~>UEZ#1`%emR zR}sBWxRzxRp6AqBV=w#~BkB|q{DQg`@N5R>KU1tE_G&k!bMb1u#miQM>5lnS@ua-Q z3LG1F&|@5J1=TGvz!B&p89tY`J2%qugzWIMd`Bra?R6_Pc&NYs)9`QPc4`dI3Ns>Q zRwPvam6Ot9+_ntd3QGh6c(L6zXGH`YHtl6ZFs&Mz5Dgy z!{3{vZ&N{mw>z$@x5C-ilI9DShN}Tr``~0JO{tnTw}H{_yPx~z^yYu=sx7+j28+A6 zem3CI!@`w3Gja+sB}35t4%vp*$5{sX%M#HNWj{W>&>F!1d5kScU-#6MLYlZoRC=v; z>-o@ZvC(6)i!pyT4VpE^otmMDIpo*prs+{bqn^k4rjK2gP~$ZNJbt_HqxrO%A|2`E zj|8gG2>uYv;gn?K&{hf>(tL1IbF8aE+f6qevzGFW^g6AGuFO0mey<@_DPmGuoq>ld zKZMY6=t)$PR+8Xq73L-!+S}SQ_Wbre-%!HGpE}?B%U{Kl*h$vo3?9fN%;s>j#9c$S8lRTQime($Tt6y_&~(lLtmy`f!M||$0b&> zU|M;eSzt%vP|P%!Igd<(U!oQZcx*O zQ9IRskccX`iXBu{eX4Q{l?l*qa^kg^5io2S)92oJbK}R`qNe>BVyo-vulASilh%#B z;zJ1?E=By3JtSqHj?6^M$>vJ6)mJbo)Bd0Qu99MHpL!HAuHCvzpf|@@P=8T< z!xr6J(}bHK#y(RnuJJ6@m)49nM>XM`$6i1JwP4BI9zwL&+Um7)dcNPN*8wS^Wv=n` zNT{FYi_BP;lsGcDwH<6X3y1S-c35{&V+&^0{w8u#XWwZHDHYMJC(ZQ=Rg?-fd5>l8 z8T!yO>HG7>;HBhiJlrNRQ96DaF4(Q%}XV==V9TTOoYYCY?Gs_HmIt2 zQIv~S!VKXAvuz@iBT;rVXv=s4nd8F>^Hv`fo6DP?T3*I;b*@sKe8hAD&Bcv=04C@; zmcEW0Ng9`>f7HYA&Mii3yi=^yO}>?}k?HRQt(w@;f}tL3RHOSCIsb$vY4(_48{<@h z*tWw4>H&v^ps43!#E?fo&*!tso9klZHxo?b>tmiq(EO}GfqPFsEVXmJBuxXa21 z+b>>6!gI1kews0JIqejpgpXmdUuj^?1B*g6ViNRT>K*-|J*NuKqgF-i!{h=8mNp|yy3l~>)t z)d>kt{(zSI_wWC|8DFN~k;md7A&q7tA>sYkj6FPkoozk-wP9MPq{X(AHz9v8Wlff% z`g|{bK0g}wgZaD$2fmvVjMGgLprbrXcMYa^r zq+p+~yV6RR*-hT*K#cVh+{h~T+Ui&m#CJH}w*1A%9rx-FocxWUm0J-Zf_fG?MgedB z?#L_;><)NH^Uz>&Oezo(%%IDSnyAMeMQoUyc(r+=T-uT=evViZ&T={tcva&N&vlh& zx9_KU#{ERg0q5iA+;XDTSm_Vx+!E&*Rt zrpO!-SCIgA?)8b81onnoWL=>dch0!!;ymW-0z9G7l~y$FxE32v;pMUT09ve8_!QGl zT-?|4l~r`Epu=LLhCcn^$f{3QC6g9`c_;~QX!Q&Ad>@ntmuuG22UJ)4!|E zud6$EGW!enJNv=heKb>ikxJ#dDtDn-+a2gwX^d@z5&M!nwpll~wWu@y@$>8G1E;UU z$3N_>>S+s*dv8RBs^ zc`wO8nzg@enaZbO)M~jcs3R1fyt8(=JwFw{h$An(w4fF)W1u+jyIa`B#Rv=BDJx#} zY`6QyGR8#|YSZjeyhAU%boR86*5@xj8{`$%~!wURyrA=Vw=UcKfU(?qdQE2jj3>tO+Ec2<5otY8DtNwu138lpoa`nq$LM$ssf9 z{WLn?m%i#3#9_0>EASgBz{`}#>_1^|iWx(0Bg@h8mClN{zNK!pgffk#w?J~`viBq# z*khK9k2u_jm}N_@U(Fpm(-=AU1&YzJt>rONFB?&m_ zuysb*Srbv^^Ng-_2N#KQerU7%yQTDrId4QZ?I?ZqW4{xviMGsP8|4zM^UAXf9FMK) zG|&XJiF11#Tf9}i_UQF*J(A@fd?r@Qe>H_6Ym*PjlWeP&`xxB!+7myYggzN_RBXlk z%lFUb=-K>d8ZYM5<~a{3#P$WKd6E~O%3|rE@_7j$ecR!dS0=ZaWm&?Xdb4=anIt;) z=fgZ}_-Z7>sNW!qR!=*!IceWR+DoF@k10>7YRh>c<7%ZWzrzd!KY_z>KAoGpiJ&{= ze3m6x{7Cf767jkFY{_>`!a2gCm{3fF$rs8})`Lnf5HGr>D;oIhiiC|SRkBFn`;?KS zZjImrdd~>Hx*Gc^?QfGfJF7Hhb7dl`$c>3Z@^mor$<$J*^4bzxIrYMHt2-G(SaWfj zcB1zT7ZGE`Vv(BwZagfCfjauMsqq2xZ-Vz&q6xzo7_S*paZk72IyG5*R-8SZf7a*E zh&nSX_{VcA8P_0hRPpgdgNi8L&&DnMCNncbQ7Bg?$+NnNSL-|-qzpLTj|m9T!&kM% z`G%1xaWr#Dkd9BH*+q%BsY@QYT*}$(b~r{PyP#@}vZfJPp(fXjP-vNk>nqbJ^`}au zju5$-()nzS z8t@q7<-QhslX1sRu!(rsM$ipEf_GjVqx>)iuO|t-!~{hTTcuFoq`8+{A4oN%%?nl% z+!$E-B;|G0E`LTaw(w24!B|F|W<{JF8lMxq%D`7B>cfq}mZp7b0tfp-X&koXcpEQ> zDS^BBdbUEHo|A$CVZ-xV=7x=`Bu2YNsjn1S2H^z`M3Gge7v2VO{|fxEj78Iibyo>6 z7naoq&*a(y_YR??dQ#<)c&<|D2rg4qJ_0c4QsX7#omK|_ zsfZH~z{=czQ2+%aV#PT?6u`>VnkayBbl3rLD+*v`vh@^zK+40jSiT_L&Ch_uO|_7z z$b-EccaEjDG*By84wDCaRV-4(eW;oz%7CphCMW`I*^zqrt14WG<*O^fR5KpL@&#D3 zjCV>qa8W8>!Iq3tqKr|z~@@NEa0PPx+w@MMBZTXY%l>gc=I4VMm608npF849B3MOZtyv+gDvoFojy4L zc&E-Uc+aHA*oI66dd$-XFaUkJX11H&z$Q5OkRGI+IntU|P0qjGJ%Dw4=xK7|&v>lE zKkl)o8tH|0b+WC;{!?f4P)=JL?Ak!!?8=ZwBvgy;EIcX;A3)e0c_tef{0!o@XG04 z4>9-mMmK~jdZ)zkL(O+j0xxM6UI5`Hj09y>?Vbd-Lp%MtE?q!H}de*u;r>VniN@uUD@B8%}6Afkr19PG~rx;e`54%SJnF zuA-_n6x4768`OU7fxYiGz|*MpI@LNq5v7Ur6^!&XzP^~R-$-tJlX1~?mL@cR{&mma zYiPciaUwG=-{HZs)h0a=NlCBv{B22=MAO$txHuhupf`h_f0IipWnf8lJAAypnqDK? zEVO1W11`2|zK1+=TlOnosV*@U05YkXQ~=d?gD|4^Sd&zS#?EZ)%mde>f4i9kjk)ql z9fW4(pGnk9j;G$H>RtVGb){cJI_(d?uR`=jc|Tdk^s&C|y~e9N+pFAD&kf;KB~OZG z69}$45Zq)5euoQq4bdB-N2<~!a#gr%qsa$m@_`$7F26h1Lt+kKRoMwl&;Og|ba1AW65iw`j(f0b3_ z4%PoYjcx{yPh+#y*GK(Ur|ooGgYM|D)$Kft9v{a8-P9lc2m4QbFNkl~MrWul5L(`9 zT5K;I--@q&*N(zCoS|zw^tEs{b8Sb9m)Q1?7mkB`PcwCWpba$NaszxLr_s5MJt!3= z2u~3Baroi5AI%|IB^`MuFEOgV0h+XfeJf_9MpB{r>>~0RR6308mQ<1QY-U z00;m803iS|>7dc&oB#l_rUU>K0001ZY%gx{W?>Au>&7GnvWCi)rfVe8?GK-Ujmt&ZK(GeDJL>#{Q#8L_Wxul>`Xzphf}OI(ymp8e^S`?mYaiL+@wOS1W& zUVWUr??kVhvQpVhrFjD4waU;X*#KmOsTvaB5ZZdU&3)uO7_KfZfcP8ab?m2dNP zoZ&m4^J1kc{Ii(9E7wJ=X5}J|t5y2W>vsF^Rw~I}In%t(Dm-`K_xx8*oh853@v!|` zKNxgh{rppz{QOh(^YG^S`fND4ygqk^H{&waI*`0GTbdH9@li{16-c>*U^iKb5 z`}32t@$J>|J^MNR34ScsYKl*WC6;mVC4TkuZC$MMGXBw- zEMh0gsyM5h{IgRnlG3T-)jCxbzK*}=PBOzclh0d6r71qlYK4zbC2{Fs$DB;9;+caV zpW+MELRF3`VrQOXZ}soq$65S2shrP6zH+vCT{!C^|64r8kKvb}3a_w^Tl`wp$v<~) zvCb*pQS2Q3*T4VAZGQV-|Nh_KwBk1jR&gIYb&2OD8NL`hvp7xgez*D)q^hhst0avb z{Yeun>jx+K?5OoRO{VHTjepROtrqz3PMS|ug+o!kb-v%U;^&`=Tl{hV4x9bpd{HUh zU+@b5n&xR<=!dSbov!{$@jl1iH9s;`X>wmA`m3K6*062A?CCEwCns*duu8JL&|iGl zJf%5ghp*^va(3&uKkk;Mm$X~e|FadHsOj<^SH!u)8^pf-=zNI3B=M$snK&8iG{&jX zZ=}*Y?Q9a9r}hE>Zld{6u{J}AtCcT)oDw>P% z-C5NqW_QL8&(~Y$+Z%eko&Vwk^mB7oydT?B{QtvIan9rX8oHtUc2+*(#(l3}p5OoB z-&HQV+y6wV=+g$BqLmr+P^(<{vOUzdkN2h3R!&y0?qSWeK7D$X zp4_&_i@MtZ{kSK$v&c7lWev5s)yMn0^ZrCH-lnm_dn?*|t~a~c!RE$)PSPqaoV?cB ze2bsa_D(DQ`&4C1XZMsMujh+KDL`enHYRpa&vw5+$#RQM!JvFeDl`%{iAq%b>$pAQy6cY-%&3HUGn5*Jf64&PrzJKT9z) zkc2bZs?x`wH2<8|?RpnKE%G!j6^#9)P+7UoVLl;4pX=iJDoj5+%*(3Xt#w^Y7tl4c zH~9B|b5_vVi*$Riz{{+4y0QO{N)5lD4@+mAubU%s_^I->a|Jd1doJ|(+0FTfusaK6~y)|NKu-ELwd&wQ-HV{8E$lzyF7J)f?^GXt8gGLyLWSxp4?!-n3`_uQzJ{ zR4enZQCh#g{o@}Rcj0N=gF}Wm2=}jX5MsFZb#vz(98-Nk5Hg&>lZ1Z4eO|!2$G8Xx zhjylUmOEKq!Ry3#p_lPvQ*8rv(6I}rv{wO-|CB6 z`YdyUIXQ#dny->6f-KXwuW%l#dUmjaEBFn@Z(vC{ZeI_Sp#J(*k{wveZ!gbi3Qx7x zeP-1jP1mFKn5cVhV;=Y3xr6(sO)6ymzNIrAV&`%NlZ}gbVE2yG^k+i| z`JqjRJpb-pl`Ip4x$VX~M<3zUPIKJ*LSOfT&vOkup_ch`DL2Rwna+VuC6&k}Ath11 zo#$WP-cR37)w^|l|L%S|&ogI_rh-X?E=}P=aP@BG&%4-_Lua)ae3+Ug0AQH z`13lGxWr?f-PR3}0fG0wb%N)s`$s;XYkb~GoMmx!a8R`tKxAe80eyd9{(Q*Wz^>xf zeo)zTVf%SpuOEfR&vS+w2~%+35WRG#{HWJ8@6>zby_~VmcC~)3Z~rp-k!M`|#TL=r zOt>|Jz%zeGHj<-!-rQ1ETeDV9lAaV!BbwhrB7}~w~u=xF;Z!n{(cioO80}aH)%=Jn&>*yy-#LH7oXsTBIoKSZnlt*f+n;onYrZ zG7P0-zb8RN^x{ME zHfV&rH)7q+&VhdZJJ-k#Esz00iOzOA0+=)NAvuXv(U@XuTNV|i!hMH1&f%US zC;3L;`v%d#?5;d{*rZh33dwcYj5m&ZVts;wC^8@X=2@-db#zyk`dQ7t-iQnp)}`uGPP6PbgYr;qXFpN7Sm&mJTHG-hq_^fC4p zxf=v#8+RIi&aF+S-y3-5>u@%kq1qB>>TmXu4{{Wt*}Z?CeAZT9-5=(xUV3~Ys83_$ z^B#~Qx$vG@1HI2TsUT_7kIcJ$o&pX~D0{8eCyL=b&u56|*Rjx4d7*i;&r#u<)l=)R z#0A{V_!iIWg|1=2m37>MRPD=EOqV1&E)w`Q${7QmXP@bCgFbO=TJf*T-2)Dj%`g50 zuqfu8zsL(zjv71b+`^(ulCCWAvCH$_q9AMihI=8=Fqh@Bwoe8zb=XK1#Iu1*(yG4z z=!SgoLD2KkH#z9_NV-!2?;&yZkfa}&wbdw%H)>XwO9i~Bs#JlJ$Q#M#L?l~2LMe2* zKn_lt_w)zm)2`(L7G!%0Lq9YtULKW0|O-(ZFI#jh|R5hzL4y!2imQExs{k5$wrG#8`= z{mAS#>{DO%M=1!2tMe#YlD8w(z=;Nf>@S)tSbXG?Y^n|FOT$tfMt-Yd_EUA zuU^P|H?5H}CFoRl$8qtg~8!C@|~W6V#%c%(Q)g*7ePrwn-H0GJv&c51|3UdMFJ6Z?k1y zH*k*HD#3+HKig-ue3S%V__#aZ*B6fPaXyLlv2hK;U6dk)%4D^IVvDwyLM4U$c?!I~ z*^HdTWqF@B@O^u2JRlLRPTHf10r;W)o0k+(U2?YaLboG`Hs9}>uklHtW>~x=_1$BY zk^;F_?8|I!tt3JMhB>LHK(@^nZ9YLeX4bEE5V~faeo`mX12Ew~0Cggv^Dv$!sVK9B zOG@&p!-Xo+M3y(x(n%3!fmVd=A;R>a?xo$+x3}hF≷^hFHT~)QO|sC-p8my>zgTpzyd5uYAIN{ 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 literal 0 HcmV?d00001 From 4f48b55d08d6e5b3943c2db25bab807a7af8bed5 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:30:53 -0700 Subject: [PATCH 09/14] chore: add limiter --- app/backend/lib/excel_import/template_nine.ts | 168 +++++++++--------- 1 file changed, 87 insertions(+), 81 deletions(-) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index 8323991efa..908557cf42 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -5,6 +5,7 @@ import formidable, { File } from 'formidable'; import { DateTime } from 'luxon'; import { performQuery } from '../graphql'; import getAuthRole from '../../../utils/getAuthRole'; +import limiter from './excel-limiter'; import { getByteArrayFromS3 } from '../s3client'; import { commonFormidableConfig, parseForm } from '../express-helper'; @@ -253,7 +254,7 @@ const templateNine = Router(); // Must pass the uuid of the file to be imported // into the database, it must be a valid uuid // and a template 9 Excel file -templateNine.get('/api/template-nine/all', async (req, res) => { +templateNine.get('/api/template-nine/all', limiter, async (req, res) => { const authRole = getAuthRole(req); const pgRole = authRole?.pgRole; const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; @@ -323,7 +324,7 @@ templateNine.get('/api/template-nine/all', async (req, res) => { } }); -templateNine.get('/api/template-nine/rfi/all', async (req, res) => { +templateNine.get('/api/template-nine/rfi/all', limiter, async (req, res) => { const authRole = getAuthRole(req); const pgRole = authRole?.pgRole; const isRoleAuthorized = pgRole === 'ccbc_admin' || pgRole === 'super_admin'; @@ -420,6 +421,7 @@ templateNine.get('/api/template-nine/rfi/all', async (req, res) => { templateNine.get( '/api/template-nine/:id/:uuid/:source/:rfiNumber?', + limiter, async (req, res) => { const authRole = getAuthRole(req); const pgRole = authRole?.pgRole; @@ -502,102 +504,106 @@ templateNine.get( } ); -templateNine.post('/api/template-nine/rfi/:id/:rfiNumber', async (req, res) => { - const authRole = getAuthRole(req); - const pgRole = authRole?.pgRole; - const isRoleAuthorized = - pgRole === 'ccbc_admin' || - pgRole === 'super_admin' || - pgRole === 'ccbc_analyst'; +templateNine.post( + '/api/template-nine/rfi/:id/:rfiNumber', + limiter, + async (req, res) => { + const authRole = getAuthRole(req); + const pgRole = authRole?.pgRole; + const isRoleAuthorized = + pgRole === 'ccbc_admin' || + pgRole === 'super_admin' || + pgRole === 'ccbc_analyst'; - if (!isRoleAuthorized) { - return res.status(404).end(); - } + if (!isRoleAuthorized) { + return res.status(404).end(); + } - const { id, rfiNumber } = req.params; + const { id, rfiNumber } = req.params; - const applicationId = parseInt(id, 10); + const applicationId = parseInt(id, 10); - if (!id || !rfiNumber || Number.isNaN(applicationId)) { - return res.status(400).json({ error: 'Invalid parameters' }); - } + if (!id || !rfiNumber || Number.isNaN(applicationId)) { + return res.status(400).json({ error: 'Invalid parameters' }); + } - const errorList = []; - const form = formidable(commonFormidableConfig); + const errorList = []; + const form = formidable(commonFormidableConfig); - const files = await parseForm(form, req).catch((err) => { - errorList.push({ level: 'file', error: err }); - return res.status(400).json(errorList).end(); - }); + const files = await parseForm(form, req).catch((err) => { + errorList.push({ level: 'file', error: err }); + return res.status(400).json(errorList).end(); + }); - const filename = Object.keys(files)[0]; - const uploadedFilesArray = files[filename] as Array; + const filename = Object.keys(files)[0]; + const uploadedFilesArray = files[filename] as Array; - const uploaded = uploadedFilesArray?.[0]; - if (!uploaded) { - return res.status(400).end(); - } - const buf = fs.readFileSync(uploaded.filepath); - const wb = XLSX.read(buf); + const uploaded = uploadedFilesArray?.[0]; + if (!uploaded) { + return res.status(400).end(); + } + const buf = fs.readFileSync(uploaded.filepath); + const wb = XLSX.read(buf); - const templateNineData = await loadTemplateNineData(wb); + const templateNineData = await loadTemplateNineData(wb); - if (templateNineData) { - const findTemplateNineData = await performQuery( - findTemplateNineDataQuery, - { applicationId }, - req - ); - if ( - findTemplateNineData.data.allApplicationFormTemplate9Data.totalCount > 0 - ) { - // update - await performQuery( - updateTemplateNineDataMutation, - { - input: { - rowId: - findTemplateNineData.data.allApplicationFormTemplate9Data.nodes[0] - .rowId, - applicationFormTemplate9DataPatch: { - jsonData: templateNineData, - errors: templateNineData.errors || null, - source: { - source: 'rfi', - rfiNumber: rfiNumber || null, - fileName: uploaded.originalFilename, - date: DateTime.now().toISO(), + if (templateNineData) { + const findTemplateNineData = await performQuery( + findTemplateNineDataQuery, + { applicationId }, + req + ); + if ( + findTemplateNineData.data.allApplicationFormTemplate9Data.totalCount > 0 + ) { + // update + await performQuery( + updateTemplateNineDataMutation, + { + input: { + rowId: + findTemplateNineData.data.allApplicationFormTemplate9Data + .nodes[0].rowId, + applicationFormTemplate9DataPatch: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: rfiNumber || null, + fileName: uploaded.originalFilename, + date: DateTime.now().toISO(), + }, + applicationId, }, - applicationId, }, }, - }, - req - ); - // else create new one - } else { - await performQuery( - createTemplateNineDataMutation, - { - input: { - applicationFormTemplate9Data: { - jsonData: templateNineData, - errors: templateNineData.errors || null, - source: { - source: 'rfi', - rfiNumber: rfiNumber || null, - fileName: uploaded.originalFilename, - date: DateTime.now().toISO(), + req + ); + // else create new one + } else { + await performQuery( + createTemplateNineDataMutation, + { + input: { + applicationFormTemplate9Data: { + jsonData: templateNineData, + errors: templateNineData.errors || null, + source: { + source: 'rfi', + rfiNumber: rfiNumber || null, + fileName: uploaded.originalFilename, + date: DateTime.now().toISO(), + }, + applicationId, }, - applicationId, }, }, - }, - req - ); + req + ); + } } + return res.status(200).json({ result: 'success' }); } - return res.status(200).json({ result: 'success' }); -}); +); export default templateNine; From 2cc48173fbd0a53af4b471bf2da4ebd0d2f2ae04 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:50:06 -0700 Subject: [PATCH 10/14] test: get byte array from s3 --- app/tests/backend/lib/s3client.test.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/app/tests/backend/lib/s3client.test.ts b/app/tests/backend/lib/s3client.test.ts index fa5f1f6524..5837a2a1be 100644 --- a/app/tests/backend/lib/s3client.test.ts +++ b/app/tests/backend/lib/s3client.test.ts @@ -10,6 +10,7 @@ import { checkFileExists, getFileTagging, getSignedUrlPromise, + getByteArrayFromS3, } from '../../../backend/lib/s3client'; const mockRequestedAt = '2021-09-01T00:00:00.000Z'; @@ -44,6 +45,7 @@ jest.mock('@aws-sdk/s3-request-presigner', () => { }); jest.mock('@aws-sdk/client-s3', () => { + const mockByteArray = new Uint8Array([65, 66, 67]); return { S3Client: jest.fn().mockImplementation(() => { return { @@ -59,6 +61,11 @@ jest.mock('@aws-sdk/client-s3', () => { Metadata: { 'requested-at': mockRequestedAt, }, + Body: { + transformToByteArray: jest + .fn() + .mockResolvedValue(mockByteArray), + }, }); }); }, @@ -105,6 +112,12 @@ describe('S3 client', () => { expect(mockJson).toHaveBeenCalled(); }); + it('should receive the correct response for file byte array download', async () => { + const response = await getByteArrayFromS3('uuid'); + + expect(response).toEqual(new Uint8Array([65, 66, 67])); + }); + it('should receive the correct response to user checking if file exists', async () => { const params = { Bucket: 'bucket', @@ -126,6 +139,7 @@ describe('S3 client', () => { $metadata: { httpStatusCode: 200 }, TagSet: [{ Key: 'av-status', Value: 'clean' }], Metadata: { 'requested-at': '2021-09-01T00:00:00.000Z' }, + Body: expect.anything(), }; const response = await getFileTagging(params); expect(response).toEqual(expected); From 11946a657f4ebc085ecff8f8379b2fbc6436f43a Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:34:52 -0700 Subject: [PATCH 11/14] test: increase test data for summary page --- .../[applicationId]/summary.test.tsx | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/app/tests/pages/analyst/application/[applicationId]/summary.test.tsx b/app/tests/pages/analyst/application/[applicationId]/summary.test.tsx index 0fe41da238..0980c37c73 100644 --- a/app/tests/pages/analyst/application/[applicationId]/summary.test.tsx +++ b/app/tests/pages/analyst/application/[applicationId]/summary.test.tsx @@ -104,6 +104,52 @@ const mockQueryPayloadReceived = { applicationMilestoneExcelDataByApplicationId: { nodes: [], }, + applicationFormTemplate9DataByApplicationId: { + nodes: [ + { + jsonData: { + geoNames: [ + { + type: 'Locality', + geoName: 'Echo Bay', + mapLink: + 'https://apps.gov.bc.ca/pub/bcgnws/names/26059.html', + geoNameId: 26, + households: 96, + projectZone: 6, + isIndigenous: 'N', + economicRegion: 'Vancouver Island and Coast', + proposedSolution: 'Fibre-Optic', + regionalDistrict: 'Regional District of Mount Waddington', + pointOfPresenceId: 'Connected Coast Echo Bay', + }, + { + type: 'Indian Reserve', + geoName: 'Gwayasdums 1', + mapLink: + 'https://apps.gov.bc.ca/pub/bcgnws/names/65365.html', + geoNameId: 65, + households: 55, + projectZone: 6, + isIndigenous: 'Y', + economicRegion: 'Vancouver Island and Coast', + proposedSolution: 'Fibre-Optic', + regionalDistrict: 'Regional District of Mount Waddington', + pointOfPresenceId: 'Connected Coast Health Bay', + }, + ], + communitiesToBeServed: 2, + totalNumberOfHouseholds: 151, + indigenousCommunitiesToBeServed: 1, + totalNumberOfIndigenousHouseholds: 55, + }, + source: { + uuid: '5ac1187a-f5ea-44fb-9999-ffffffff', + source: 'application', + }, + }, + ], + }, conditionalApproval: {}, changeRequestDataByApplicationId: {}, status: 'received', @@ -229,6 +275,51 @@ const payloadConditionalApproval = { applicationMilestoneExcelDataByApplicationId: { nodes: [], }, + applicationFormTemplate9DataByApplicationId: { + nodes: [ + { + jsonData: { + geoNames: [ + { + type: 'Locality', + geoName: 'Echo Bay', + mapLink: 'https://apps.gov.bc.ca/pub/bcgnws/names/26059.html', + geoNameId: 26, + households: 96, + projectZone: 6, + isIndigenous: 'N', + economicRegion: 'Vancouver Island and Coast', + proposedSolution: 'Fibre-Optic', + regionalDistrict: 'Regional District of Mount Waddington', + pointOfPresenceId: 'Connected Coast Echo Bay', + }, + { + type: 'Indian Reserve', + geoName: 'Gwayasdums 1', + mapLink: 'https://apps.gov.bc.ca/pub/bcgnws/names/65365.html', + geoNameId: 65, + households: 55, + projectZone: 6, + isIndigenous: 'Y', + economicRegion: 'Vancouver Island and Coast', + proposedSolution: 'Fibre-Optic', + regionalDistrict: 'Regional District of Mount Waddington', + pointOfPresenceId: 'Connected Coast Health Bay', + }, + ], + communitiesToBeServed: 2, + totalNumberOfHouseholds: 151, + indigenousCommunitiesToBeServed: 1, + totalNumberOfIndigenousHouseholds: 55, + }, + source: { + uuid: '5ac1187a-f5ea-44fb-9999-ffffffff', + source: 'rfi', + rfiNumber: 'CCBC-0001-1', + }, + }, + ], + }, conditionalApproval: { jsonData: { decision: { From 77578c7ea7618b8cd40520683896d3aacec1a49b Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 10 Oct 2024 11:09:07 -0700 Subject: [PATCH 12/14] test: increase test coverage --- app/backend/lib/excel_import/template_nine.ts | 7 +- .../lib/excel_import/template_nine.test.ts | 87 ++++++++++++++++++- 2 files changed, 92 insertions(+), 2 deletions(-) diff --git a/app/backend/lib/excel_import/template_nine.ts b/app/backend/lib/excel_import/template_nine.ts index 908557cf42..ff414db343 100644 --- a/app/backend/lib/excel_import/template_nine.ts +++ b/app/backend/lib/excel_import/template_nine.ts @@ -449,7 +449,12 @@ templateNine.get( rfiNumber = req.params.rfiNumber || null; } const applicationId = parseInt(id, 10); - const templateNineData = await handleTemplateNine(uuid, applicationId, req); + const templateNineData = await handleTemplateNine( + uuid, + applicationId, + req, + true + ); if (templateNineData) { const findTemplateNineData = await performQuery( findTemplateNineDataQuery, diff --git a/app/tests/backend/lib/excel_import/template_nine.test.ts b/app/tests/backend/lib/excel_import/template_nine.test.ts index 124608d175..7ce1694ae6 100644 --- a/app/tests/backend/lib/excel_import/template_nine.test.ts +++ b/app/tests/backend/lib/excel_import/template_nine.test.ts @@ -181,6 +181,67 @@ describe('The Community Progress Report import', () => { expect(all.status).toBe(200); }); + it('should process all the rfis that have template 9 when they exist', async () => { + mocked(getAuthRole).mockImplementation(() => { + return { + pgRole: 'ccbc_admin', + landingRoute: '/', + }; + }); + + mocked(performQuery).mockImplementation(async () => { + return { + data: { + allApplicationRfiData: { + nodes: [ + { + rfiDataByRfiDataId: { + jsonData: { + rfiType: ['Missing files or information'], + rfiDueBy: '2023-02-24', + rfiAdditionalFiles: { + geographicNames: [ + { + id: 1000, + name: 'template_9-backbone_and_geographic_names-rfi.xlsx', + size: 9999, + type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + uuid: '93f09138-9e69-1238-abc-123456789', + }, + ], + geographicNamesRfi: true, + }, + }, + rfiNumber: 'CCBC-00001-1', + }, + applicationId: 1, + }, + ], + }, + allApplicationFormTemplate9Data: { + totalCount: 1, + nodes: [ + { + rowId: 1, + }, + ], + }, + }, + }; + }); + + mocked(getByteArrayFromS3).mockImplementation(async () => { + const filePath = path.resolve(__dirname, 'template9-complete.xlsx'); // Adjust path if needed + const fileContent = fs.readFileSync(filePath); + + // Mock the function to return the file content + return fileContent; + }); + + const all = await request(app).get('/api/template-nine/rfi/all'); + expect(all.status).toBe(200); + }); + it('should return correct responses for different combinations of applicationId and rfiNumber', async () => { mocked(getAuthRole).mockImplementation(() => { return { @@ -211,15 +272,39 @@ describe('The Community Progress Report import', () => { expect(application.status).toBe(200); + mocked(getByteArrayFromS3).mockImplementation(async () => { + const filePath = path.resolve(__dirname, 'template9-complete.xlsx'); // Adjust path if needed + const fileContent = fs.readFileSync(filePath); + + // Mock the function to return the file content + return fileContent; + }); + + const nonExistingApplication = await request(app).get( + '/api/template-nine/1/1234-abcde/application' + ); + expect(nonExistingApplication.status).toBe(200); + mocked(performQuery).mockImplementation(async () => { return { data: { allApplicationFormTemplate9Data: { - totalCount: 0, + totalCount: 1, + nodes: [ + { + rowId: 1, + }, + ], }, }, }; }); + + const existingApplication = await request(app).get( + '/api/template-nine/1/1234-abcde/application' + ); + + expect(existingApplication.status).toBe(200); }); it('should process the rfi for authorized user', async () => { From cde42414e9ee63726e3724dd912c4058146bec0c Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 10 Oct 2024 11:34:00 -0700 Subject: [PATCH 13/14] chore: schema update --- app/schema/schema.graphql | 45702 ++++++++++++++++++------------------ 1 file changed, 22851 insertions(+), 22851 deletions(-) diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index f411124d5b..81ac318751 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -2871,8 +2871,8 @@ type CcbcUser implements Node { """Reads a single `CcbcUser` that is related to this `CcbcUser`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2891,22 +2891,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2925,22 +2925,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2959,22 +2959,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2993,22 +2993,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3027,22 +3027,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3061,22 +3061,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3095,22 +3095,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3129,22 +3129,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3163,24 +3163,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3199,24 +3197,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3235,24 +3231,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3271,22 +3265,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3305,22 +3299,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3339,22 +3333,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3373,24 +3367,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3409,24 +3401,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3445,24 +3435,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3481,22 +3469,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3515,22 +3503,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3549,22 +3537,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3583,24 +3571,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3619,24 +3607,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3655,24 +3643,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3691,19 +3679,19 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """Reads and enables pagination through a set of `RfiData`.""" rfiDataByCreatedBy( @@ -3807,8 +3795,8 @@ type CcbcUser implements Node { filter: RfiDataFilter ): RfiDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3827,22 +3815,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3861,22 +3849,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3895,22 +3883,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3929,22 +3917,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3963,22 +3951,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3997,24 +3985,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `RecordVersion`.""" + recordVersionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4033,24 +4019,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RecordVersion`.""" + orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: RecordVersionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: RecordVersionFilter + ): RecordVersionsConnection! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByUpdatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4069,24 +4055,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByArchivedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4105,24 +4091,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationCommunityProgressReportDataByCreatedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4141,26 +4127,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4179,26 +4161,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4217,26 +4195,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4255,24 +4229,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4291,24 +4263,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4327,24 +4297,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4363,24 +4331,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4399,24 +4365,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4435,24 +4399,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4471,24 +4433,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4507,24 +4469,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4543,24 +4505,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4579,24 +4541,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4615,24 +4577,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4651,22 +4613,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4685,22 +4649,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4734,7 +4698,7 @@ type CcbcUser implements Node { ): ApplicationSowDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4767,8 +4731,8 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4787,22 +4751,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4821,22 +4785,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4855,22 +4819,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4889,22 +4853,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4923,22 +4887,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4957,22 +4921,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4991,22 +4955,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5025,22 +4991,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5059,22 +5027,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5093,22 +5063,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5127,22 +5097,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5161,24 +5131,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5197,24 +5165,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5233,24 +5199,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5269,22 +5233,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5303,22 +5267,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5337,22 +5301,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5371,22 +5335,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5405,22 +5369,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5439,22 +5405,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5473,22 +5443,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5507,22 +5481,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5541,22 +5519,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5575,22 +5555,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5609,22 +5591,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5643,22 +5625,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5677,24 +5659,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5713,24 +5693,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByUpdatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5749,24 +5729,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByArchivedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5785,24 +5765,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByCreatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5821,24 +5801,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5857,24 +5837,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5893,22 +5873,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5927,22 +5909,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5961,22 +5945,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5995,22 +5981,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6029,22 +6017,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6063,22 +6051,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6097,22 +6085,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `RecordVersion`.""" - recordVersionsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6131,22 +6119,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RecordVersion`.""" - orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RecordVersionCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RecordVersionFilter - ): RecordVersionsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6165,22 +6155,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6199,22 +6191,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6233,22 +6227,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6267,22 +6263,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6301,22 +6299,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6335,22 +6335,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6369,22 +6369,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6403,22 +6403,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6437,22 +6437,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6471,22 +6471,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6505,22 +6505,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6539,19 +6539,19 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. @@ -7591,42 +7591,8 @@ type CcbcUser implements Node { filter: ApplicationFormTemplate9DataFilter ): ApplicationFormTemplate9DataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7657,10 +7623,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7691,10 +7657,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7713,22 +7679,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7759,10 +7725,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7793,10 +7759,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7815,22 +7781,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7861,10 +7827,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7895,10 +7861,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -7917,22 +7883,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7951,22 +7917,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7997,10 +7963,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -8019,22 +7985,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8053,22 +8019,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8087,22 +8053,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -8121,22 +8087,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8155,22 +8121,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8189,22 +8155,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8223,22 +8189,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8257,22 +8223,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8303,10 +8269,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8337,10 +8303,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8359,22 +8325,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8405,10 +8371,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8439,44 +8405,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8495,22 +8427,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8529,22 +8461,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8575,10 +8507,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8609,10 +8541,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8643,10 +8575,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8665,22 +8597,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8711,44 +8643,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8779,10 +8677,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8801,22 +8699,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8835,22 +8733,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8881,10 +8779,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8915,10 +8813,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8937,22 +8835,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -8971,22 +8869,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9017,10 +8915,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9051,10 +8949,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9073,22 +8971,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -9107,22 +9005,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9153,10 +9051,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9187,10 +9085,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9209,22 +9107,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -9243,22 +9141,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9289,10 +9187,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9323,10 +9221,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9345,22 +9243,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9391,10 +9289,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9425,10 +9323,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9447,22 +9345,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9481,22 +9379,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9527,10 +9425,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9549,22 +9447,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9583,22 +9481,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9617,22 +9515,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9663,10 +9561,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9685,22 +9583,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9719,22 +9617,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9765,10 +9663,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9799,10 +9697,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9821,22 +9719,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9855,22 +9753,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9901,10 +9799,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9935,10 +9833,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9969,10 +9867,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -9991,22 +9889,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10037,10 +9935,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10059,22 +9957,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10093,22 +9991,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -10127,22 +10025,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10161,22 +10059,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10207,10 +10105,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10229,22 +10127,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -10263,22 +10161,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10309,10 +10207,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10343,10 +10241,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10377,10 +10275,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10411,10 +10309,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10445,10 +10343,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10479,10 +10377,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10513,10 +10411,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10547,10 +10445,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10581,10 +10513,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10615,10 +10547,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10637,22 +10569,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10683,10 +10649,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10717,10 +10683,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10739,22 +10705,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -10773,22 +10739,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10819,10 +10785,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10841,22 +10807,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10887,10 +10853,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -10909,22 +10875,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10955,10 +10921,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10977,22 +10943,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11011,22 +10977,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11057,78 +11023,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11159,10 +11057,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11193,10 +11091,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11227,10 +11125,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11261,10 +11159,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11295,10 +11193,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11329,10 +11227,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11363,10 +11261,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11397,10 +11295,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11431,10 +11329,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11465,10 +11363,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11499,10 +11397,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11533,10 +11431,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11567,10 +11465,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11601,10 +11499,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11635,10 +11533,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11669,44 +11567,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11737,10 +11601,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11771,44 +11635,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11839,10 +11669,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11873,44 +11703,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11941,10 +11737,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11975,10 +11771,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -11997,22 +11793,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12031,22 +11827,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12077,44 +11873,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12145,10 +11907,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -12167,22 +11929,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12213,10 +11975,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12247,10 +12009,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12281,10 +12043,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -12303,22 +12065,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12337,22 +12099,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12383,10 +12145,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12405,22 +12167,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12451,10 +12213,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12485,10 +12247,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12507,22 +12269,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12553,10 +12315,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12587,10 +12349,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12609,22 +12371,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12643,22 +12405,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12677,22 +12439,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12711,22 +12473,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12757,10 +12519,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12779,22 +12541,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12825,10 +12587,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12859,10 +12621,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12893,78 +12655,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12983,22 +12677,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13029,10 +12723,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13063,10 +12757,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13097,10 +12791,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13131,10 +12825,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13165,10 +12859,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13199,10 +12893,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13233,112 +12927,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13369,10 +12961,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13403,10 +12995,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13425,22 +13017,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13471,10 +13063,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13505,10 +13097,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13539,10 +13131,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13573,10 +13165,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13607,10 +13199,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13641,10 +13233,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13675,10 +13267,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13709,10 +13301,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13743,10 +13335,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13777,10 +13369,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13811,10 +13403,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13833,22 +13425,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13867,22 +13459,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13913,10 +13505,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13935,22 +13527,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13969,22 +13561,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14003,22 +13595,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14037,22 +13629,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14083,10 +13675,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14105,22 +13697,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14139,22 +13731,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14185,10 +13777,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14219,10 +13811,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14241,22 +13833,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14287,10 +13879,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14321,10 +13913,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14343,22 +13935,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14389,10 +13981,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14423,10 +14015,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14457,10 +14049,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14491,10 +14083,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14525,10 +14117,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14559,10 +14151,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14593,10 +14185,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14627,10 +14219,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14661,44 +14253,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14729,10 +14287,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14751,22 +14309,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14785,22 +14343,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14831,10 +14389,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14865,10 +14423,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14887,22 +14445,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14933,10 +14491,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14967,10 +14525,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14989,22 +14547,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15035,10 +14593,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15057,22 +14615,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -15091,22 +14649,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15137,10 +14695,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15171,10 +14729,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -15193,22 +14751,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15227,22 +14785,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15273,10 +14831,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15307,10 +14899,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15329,22 +14921,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15363,22 +14955,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15409,10 +15001,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15443,10 +15035,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15465,22 +15057,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15511,10 +15103,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15545,10 +15137,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15567,22 +15159,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15613,10 +15205,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15647,10 +15239,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15669,22 +15261,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15715,10 +15307,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15749,10 +15341,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15771,22 +15363,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15817,10 +15409,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15851,10 +15443,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15885,10 +15477,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15907,22 +15499,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15953,10 +15545,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15975,22 +15567,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16009,22 +15601,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16043,22 +15635,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16077,22 +15669,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16123,10 +15715,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16145,22 +15737,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16179,22 +15771,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16225,10 +15817,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16259,10 +15851,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16281,22 +15873,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16315,22 +15907,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16361,10 +15953,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16383,22 +15975,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16417,22 +16009,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16451,22 +16043,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16485,22 +16077,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16531,10 +16123,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16553,22 +16145,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16599,10 +16191,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16633,10 +16225,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16667,10 +16259,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16701,10 +16293,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16723,22 +16315,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16769,10 +16361,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16803,10 +16429,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16825,22 +16451,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16859,22 +16485,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16905,10 +16531,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16939,10 +16565,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16973,10 +16599,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16995,22 +16621,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17041,10 +16667,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17063,22 +16689,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17109,10 +16735,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17143,10 +16769,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17165,22 +16791,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17211,10 +16837,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17245,10 +16871,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17267,22 +16893,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17301,22 +16927,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17347,10 +16973,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17381,44 +17041,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17449,10 +17075,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17483,44 +17109,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17551,10 +17143,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17585,10 +17177,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17607,22 +17199,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17653,10 +17245,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17687,10 +17279,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17709,22 +17301,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17755,10 +17347,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17789,10 +17381,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17811,22 +17403,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17857,10 +17449,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17891,10 +17483,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17913,22 +17505,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17959,10 +17551,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17993,10 +17585,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18015,22 +17607,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18061,10 +17653,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18095,10 +17687,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18117,22 +17709,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18163,10 +17755,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18197,10 +17789,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18219,22 +17811,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18265,10 +17857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18299,10 +17891,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18321,22 +17913,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18367,10 +17959,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18401,10 +17993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18423,22 +18015,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18469,10 +18061,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18503,10 +18095,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18537,10 +18129,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18571,10 +18197,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18605,10 +18231,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18639,10 +18265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -18661,22 +18287,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18707,10 +18333,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18729,22 +18355,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18763,22 +18389,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -18797,22 +18423,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18843,10 +18469,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18877,10 +18503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18899,22 +18525,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18945,10 +18571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18979,10 +18605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -19001,22 +18627,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19035,22 +18661,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19069,22 +18695,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -19103,22 +18729,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19149,10 +18775,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19171,22 +18797,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19205,22 +18831,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19251,10 +18877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19285,10 +18911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19307,22 +18933,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19341,22 +18967,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19387,10 +19013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19409,22 +19035,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( + cbcsByCbcDataCreatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -19455,10 +19081,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19489,10 +19115,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19523,10 +19149,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + cbcsByCbcDataUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19557,10 +19183,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByCbcDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19591,10 +19251,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByCbcDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19625,10 +19285,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + cbcsByCbcDataArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19659,10 +19319,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19693,10 +19387,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19727,10 +19421,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19749,22 +19443,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19795,10 +19489,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19829,10 +19523,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19851,22 +19545,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19897,10 +19591,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19931,10 +19625,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19953,22 +19647,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19999,10 +19693,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20033,10 +19727,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20067,10 +19795,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20101,10 +19829,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -20123,22 +19851,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20169,10 +19897,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20203,10 +19931,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -20225,22 +19953,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityCreatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20259,22 +19987,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20293,22 +20021,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20339,10 +20067,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20373,10 +20101,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20395,22 +20123,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20429,22 +20157,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20475,10 +20203,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20509,10 +20237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityArchivedByAndCbcId( + cbcsByCbcProjectCommunityCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20543,10 +20271,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20577,10 +20305,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20611,10 +20339,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20645,10 +20373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20667,22 +20395,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20701,22 +20429,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20747,10 +20475,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20781,10 +20509,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityArchivedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CommunitiesSourceDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20815,10 +20611,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20849,10 +20645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20871,22 +20667,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( + ccbcUsersByReportingGcpeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20917,10 +20713,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( + ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20951,10 +20747,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20973,22 +20769,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( + ccbcUsersByReportingGcpeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21019,10 +20815,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( + ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21053,10 +20849,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedArchivedByAndApplicationId( + applicationsByApplicationAnnouncedCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21087,10 +20883,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21121,10 +20917,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21155,10 +20951,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataCreatedByAndApplicationId( + applicationsByApplicationAnnouncedUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21189,10 +20985,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21223,10 +21019,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21257,10 +21053,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataUpdatedByAndApplicationId( + applicationsByApplicationAnnouncedArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21291,10 +21087,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21325,10 +21121,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21359,10 +21155,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormTemplate9DataArchivedByAndApplicationId( + applicationsByApplicationFormTemplate9DataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21393,10 +21189,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationFormTemplate9DataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedBy( + ccbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21427,10 +21223,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedBy( + ccbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21461,82 +21257,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection! -} - -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application` and cursor to aid in pagination. - """ - edges: [ApplicationsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -Table containing the data associated with the CCBC respondents application -""" -type Application implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key ID for the application""" - rowId: Int! - - """Reference number assigned to the application""" - ccbcNumber: String - - """The owner of the application, identified by its JWT sub""" - owner: String! - - """The intake associated with the application, set when it is submitted""" - intakeId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Program type of the project""" - program: String! - - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21555,24 +21279,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataUpdatedByAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21591,24 +21313,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21627,22 +21347,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormTemplate9DataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21661,24 +21381,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationFormTemplate9DataArchivedByAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21697,22 +21415,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21731,4175 +21449,3528 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationFormTemplate9DataArchivedByAndUpdatedByManyToManyConnection! +} + +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + edges: [CcbcUsersEdge!]! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition +"""A location in a connection that can be used for resuming pagination.""" +scalar Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! - """Only read the last `n` values of the set.""" - last: Int + """When paginating backwards, the cursor to continue.""" + startCursor: Cursor - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """When paginating forwards, the cursor to continue.""" + endCursor: Cursor +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `CcbcUser`.""" +enum CcbcUsersOrderBy { + NATURAL + ID_ASC + ID_DESC + SESSION_SUB_ASC + SESSION_SUB_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + EMAIL_ADDRESS_ASC + EMAIL_ADDRESS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXTERNAL_ANALYST_ASC + EXTERNAL_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `CcbcUser` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CcbcUserCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `sessionSub` field.""" + sessionSub: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityProgressReportDataCondition + """Checks for equality with the object’s `givenName` field.""" + givenName: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """Checks for equality with the object’s `familyName` field.""" + familyName: String - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """Checks for equality with the object’s `externalAnalyst` field.""" + externalAnalyst: Boolean +} - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `emailAddress` field.""" + emailAddress: StringFilter - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationInternalDescriptionCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" + ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `ccbcUsersByCreatedBy` exist.""" + ccbcUsersByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneDataCondition + """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" + ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `ccbcUsersByArchivedBy` exist.""" + ccbcUsersByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `intakesByCreatedBy` relation.""" + intakesByCreatedBy: CcbcUserToManyIntakeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `intakesByCreatedBy` exist.""" + intakesByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `intakesByUpdatedBy` relation.""" + intakesByUpdatedBy: CcbcUserToManyIntakeFilter - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `intakesByUpdatedBy` exist.""" + intakesByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneExcelDataCondition + """Filter by the object’s `intakesByArchivedBy` relation.""" + intakesByArchivedBy: CcbcUserToManyIntakeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationsByCreatedBy` exist.""" + applicationsByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationsByUpdatedBy` relation.""" + applicationsByUpdatedBy: CcbcUserToManyApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationsByUpdatedBy` exist.""" + applicationsByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationsByArchivedBy` relation.""" + applicationsByArchivedBy: CcbcUserToManyApplicationFilter - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationsByArchivedBy` exist.""" + applicationsByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" + applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """Some related `applicationStatusesByCreatedBy` exist.""" + applicationStatusesByCreatedByExist: Boolean - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" + applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationStatusesByArchivedBy` exist.""" + applicationStatusesByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" + applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationStatusesByUpdatedBy` exist.""" + applicationStatusesByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeRequestDataCondition + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationProjectTypeCondition + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnalystLeadCondition + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" + applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationAnnouncementsByCreatedBy` exist.""" + applicationAnnouncementsByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" + applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnnouncementsByUpdatedBy` exist.""" + applicationAnnouncementsByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. + """ + applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationAnnouncementsByArchivedBy` exist.""" + applicationAnnouncementsByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """ + Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. + """ + applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" + applicationGisAssessmentHhsByCreatedByExist: Boolean """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. """ - applicationPendingChangeRequestsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor + applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" + applicationGisAssessmentHhsByUpdatedByExist: Boolean - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + """ + applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition + """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" + applicationGisAssessmentHhsByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncedCondition + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter - """ - Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. - """ - applicationFormTemplate9DataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `sowTab1SByCreatedBy` relation.""" + sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `sowTab1SByCreatedBy` exist.""" + sowTab1SByCreatedByExist: Boolean - """The method to use when ordering `ApplicationFormTemplate9Data`.""" - orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" + sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormTemplate9DataCondition + """Some related `sowTab1SByUpdatedBy` exist.""" + sowTab1SByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormTemplate9DataFilter - ): ApplicationFormTemplate9DataConnection! + """Filter by the object’s `sowTab1SByArchivedBy` relation.""" + sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( - """Only read the first `n` values of the set.""" - first: Int + """Some related `sowTab1SByArchivedBy` exist.""" + sowTab1SByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter - """ - computed column to return space separated list of amendment numbers for a change request - """ - amendmentNumbers: String + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean - """Computed column to return analyst lead of an application""" - analystLead: String + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter - """Computed column to return the analyst-visible status of an application""" - analystStatus: String - announced: Boolean + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter - """Only read the last `n` values of the set.""" - last: Int + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter - """Computed column to get assessment notifications by assessment type""" - assessmentNotifications( - """Only read the first `n` values of the set.""" - first: Int + """Some related `sowTab8SByUpdatedBy` exist.""" + sowTab8SByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sowTab8SByArchivedBy` relation.""" + sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `sowTab8SByArchivedBy` exist.""" + sowTab8SByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" + changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `changeRequestDataByCreatedBy` exist.""" + changeRequestDataByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" + changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData + """Some related `changeRequestDataByUpdatedBy` exist.""" + changeRequestDataByUpdatedByExist: Boolean - """Computed column to return external status of an application""" - externalStatus: String + """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" + changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter - """Computed column to display form_data""" - formData: FormData + """Some related `changeRequestDataByArchivedBy` exist.""" + changeRequestDataByArchivedByExist: Boolean - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh + """ + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. + """ + applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + """ + Some related `applicationCommunityProgressReportDataByCreatedBy` exist. + """ + applicationCommunityProgressReportDataByCreatedByExist: Boolean - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """ + Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. + """ + applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Computed column that returns list of audit records for application""" - history( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + """ + applicationCommunityProgressReportDataByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + """ + applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `applicationCommunityProgressReportDataByArchivedBy` exist. + """ + applicationCommunityProgressReportDataByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. + """ + applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" + applicationCommunityReportExcelDataByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String + """ + Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. + """ + applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Computed column to display organization name from json data""" - organizationName: String + """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" + applicationCommunityReportExcelDataByUpdatedByExist: Boolean """ - Computed column to return the application announced status for an application + Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. """ - package: Int + applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Computed column to return project information data""" - projectInformation: ProjectInformationData + """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" + applicationCommunityReportExcelDataByArchivedByExist: Boolean - """Computed column to display the project name""" - projectName: String + """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" + applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Computed column to return last RFI for an application""" - rfi: RfiData + """Some related `applicationClaimsDataByCreatedBy` exist.""" + applicationClaimsDataByCreatedByExist: Boolean - """Computed column to return status of an application""" - status: String + """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" + applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Computed column to return the order of the status""" - statusOrder: Int + """Some related `applicationClaimsDataByUpdatedBy` exist.""" + applicationClaimsDataByUpdatedByExist: Boolean + + """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" + applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + + """Some related `applicationClaimsDataByArchivedBy` exist.""" + applicationClaimsDataByArchivedByExist: Boolean """ - Computed column to return the status order with the status name appended for sorting and filtering + Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. """ - statusSortFilter: String - zone: Int + applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + + """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" + applicationClaimsExcelDataByCreatedByExist: Boolean """ - Computed column to get single lowest zone from json data, used for sorting + Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. """ - zones: [Int] + applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" + applicationClaimsExcelDataByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. + """ + applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" + applicationClaimsExcelDataByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" + applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationMilestoneDataByCreatedBy` exist.""" + applicationMilestoneDataByCreatedByExist: Boolean - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" + applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentTypeCondition + """Some related `applicationMilestoneDataByUpdatedBy` exist.""" + applicationMilestoneDataByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + """ + Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. + """ + applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationMilestoneDataByArchivedBy` exist.""" + applicationMilestoneDataByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. + """ + applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" + applicationMilestoneExcelDataByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. + """ + applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" + applicationMilestoneExcelDataByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + """ + applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" + applicationMilestoneExcelDataByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" + cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcProjectsByCreatedBy` exist.""" + cbcProjectsByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" + cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcProjectsByUpdatedBy` exist.""" + cbcProjectsByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" + cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcProjectsByArchivedBy` exist.""" + cbcProjectsByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. + """ + applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" + applicationInternalDescriptionsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. + """ + applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" + applicationInternalDescriptionsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. + """ + applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" + applicationInternalDescriptionsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" + applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationProjectTypesByCreatedBy` exist.""" + applicationProjectTypesByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" + applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationProjectTypesByUpdatedBy` exist.""" + applicationProjectTypesByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" + applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationProjectTypesByArchivedBy` exist.""" + applicationProjectTypesByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `emailRecordsByCreatedBy` relation.""" + emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `emailRecordsByCreatedBy` exist.""" + emailRecordsByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" + emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `emailRecordsByUpdatedBy` exist.""" + emailRecordsByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `emailRecordsByArchivedBy` relation.""" + emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `emailRecordsByArchivedBy` exist.""" + emailRecordsByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `notificationsByCreatedBy` relation.""" + notificationsByCreatedBy: CcbcUserToManyNotificationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `notificationsByCreatedBy` exist.""" + notificationsByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `notificationsByUpdatedBy` relation.""" + notificationsByUpdatedBy: CcbcUserToManyNotificationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `notificationsByUpdatedBy` exist.""" + notificationsByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `notificationsByArchivedBy` relation.""" + notificationsByArchivedBy: CcbcUserToManyNotificationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `notificationsByArchivedBy` exist.""" + notificationsByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" + cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" + cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. + """ + cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" + cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" + cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" + cbcDataChangeReasonsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" + cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" + cbcDataChangeReasonsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" + cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" + cbcDataChangeReasonsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" + communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `communitiesSourceDataByCreatedBy` exist.""" + communitiesSourceDataByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" + communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `communitiesSourceDataByUpdatedBy` exist.""" + communitiesSourceDataByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" + communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( - """Only read the first `n` values of the set.""" - first: Int + """Some related `communitiesSourceDataByArchivedBy` exist.""" + communitiesSourceDataByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" + cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" + cbcProjectCommunitiesByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" + cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" + cbcProjectCommunitiesByUpdatedByExist: Boolean - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" + cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition + """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" + cbcProjectCommunitiesByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" + reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `reportingGcpesByCreatedBy` exist.""" + reportingGcpesByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" + reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `reportingGcpesByUpdatedBy` exist.""" + reportingGcpesByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" + reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `reportingGcpesByArchivedBy` exist.""" + reportingGcpesByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" + applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationAnnouncedsByCreatedBy` exist.""" + applicationAnnouncedsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" + applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationAnnouncedsByUpdatedBy` exist.""" + applicationAnnouncedsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" + applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationAnnouncedsByArchivedBy` exist.""" + applicationAnnouncedsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationFormTemplate9DataByCreatedBy` relation. + """ + applicationFormTemplate9DataByCreatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationFormTemplate9DataByCreatedBy` exist.""" + applicationFormTemplate9DataByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationFormTemplate9DataByUpdatedBy` relation. + """ + applicationFormTemplate9DataByUpdatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationFormTemplate9DataByUpdatedBy` exist.""" + applicationFormTemplate9DataByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Filter by the object’s `applicationFormTemplate9DataByArchivedBy` relation. + """ + applicationFormTemplate9DataByArchivedBy: CcbcUserToManyApplicationFormTemplate9DataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationFormTemplate9DataByArchivedBy` exist.""" + applicationFormTemplate9DataByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `keycloakJwtsBySub` relation.""" + keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `keycloakJwtsBySub` exist.""" + keycloakJwtsBySubExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [CcbcUserFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [CcbcUserFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: CcbcUserFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against Int fields. All fields are combined with a logical ‘and.’ +""" +input IntFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Equal to the specified value.""" + equalTo: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Not equal to the specified value.""" + notEqualTo: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Int - """Only read the last `n` values of the set.""" - last: Int + """Included in the specified list.""" + in: [Int!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Not included in the specified list.""" + notIn: [Int!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than the specified value.""" + lessThan: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than the specified value.""" + greaterThan: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Int +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against String fields. All fields are combined with a logical ‘and.’ +""" +input StringFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value.""" + equalTo: String - """Only read the last `n` values of the set.""" - last: Int + """Not equal to the specified value.""" + notEqualTo: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Included in the specified list.""" + in: [String!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not included in the specified list.""" + notIn: [String!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than the specified value.""" + lessThan: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + """Less than or equal to the specified value.""" + lessThanOrEqualTo: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than the specified value.""" + greaterThan: String - """Only read the last `n` values of the set.""" - last: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Contains the specified string (case-sensitive).""" + includes: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Does not contain the specified string (case-sensitive).""" + notIncludes: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Contains the specified string (case-insensitive).""" + includesInsensitive: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Does not contain the specified string (case-insensitive).""" + notIncludesInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Starts with the specified string (case-sensitive).""" + startsWith: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + """Does not start with the specified string (case-sensitive).""" + notStartsWith: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Starts with the specified string (case-insensitive).""" + startsWithInsensitive: String - """Only read the last `n` values of the set.""" - last: Int + """Does not start with the specified string (case-insensitive).""" + notStartsWithInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Ends with the specified string (case-sensitive).""" + endsWith: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Does not end with the specified string (case-sensitive).""" + notEndsWith: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Ends with the specified string (case-insensitive).""" + endsWithInsensitive: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Does not end with the specified string (case-insensitive).""" + notEndsWithInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + like: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLike: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + likeInsensitive: String - """Only read the last `n` values of the set.""" - last: Int + """ + Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLikeInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value (case-insensitive).""" + equalToInsensitive: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not equal to the specified value (case-insensitive).""" + notEqualToInsensitive: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Not equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + distinctFromInsensitive: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + notDistinctFromInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Included in the specified list (case-insensitive).""" + inInsensitive: [String!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + """Not included in the specified list (case-insensitive).""" + notInInsensitive: [String!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Less than the specified value (case-insensitive).""" + lessThanInsensitive: String - """Only read the last `n` values of the set.""" - last: Int + """Less than or equal to the specified value (case-insensitive).""" + lessThanOrEqualToInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Greater than the specified value (case-insensitive).""" + greaterThanInsensitive: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than or equal to the specified value (case-insensitive).""" + greaterThanOrEqualToInsensitive: String +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ +""" +input DatetimeFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Equal to the specified value.""" + equalTo: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Not equal to the specified value.""" + notEqualTo: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Included in the specified list.""" + in: [Datetime!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Not included in the specified list.""" + notIn: [Datetime!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than the specified value.""" + lessThan: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Datetime - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than the specified value.""" + greaterThan: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Datetime +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ +""" +input BooleanFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value.""" + equalTo: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Not equal to the specified value.""" + notEqualTo: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Included in the specified list.""" + in: [Boolean!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not included in the specified list.""" + notIn: [Boolean!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than the specified value.""" + lessThan: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than the specified value.""" + greaterThan: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Boolean +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCcbcUserFilter { + """ + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CcbcUserFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input IntakeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `openTimestamp` field.""" + openTimestamp: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `closeTimestamp` field.""" + closeTimestamp: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationNumberSeqName` field.""" + applicationNumberSeqName: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `counterId` field.""" + counterId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `description` field.""" + description: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `hidden` field.""" + hidden: BooleanFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `hiddenCode` field.""" + hiddenCode: UUIDFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rollingIntake` field.""" + rollingIntake: BooleanFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationsByIntakeId` relation.""" + applicationsByIntakeId: IntakeToManyApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationsByIntakeId` exist.""" + applicationsByIntakeIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `gaplessCounterByCounterId` relation.""" + gaplessCounterByCounterId: GaplessCounterFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `gaplessCounterByCounterId` exists.""" + gaplessCounterByCounterIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [IntakeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [IntakeFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: IntakeFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ +""" +input UUIDFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Equal to the specified value.""" + equalTo: UUID - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not equal to the specified value.""" + notEqualTo: UUID - """Only read the last `n` values of the set.""" - last: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Included in the specified list.""" + in: [UUID!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not included in the specified list.""" + notIn: [UUID!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than the specified value.""" + lessThan: UUID - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than or equal to the specified value.""" + lessThanOrEqualTo: UUID - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Greater than the specified value.""" + greaterThan: UUID - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: UUID +} - """Only read the last `n` values of the set.""" - last: Int +""" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +""" +scalar UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +""" +input IntakeToManyApplicationFilter { + """ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcNumber` field.""" + ccbcNumber: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `owner` field.""" + owner: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `intakeId` field.""" + intakeId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `program` field.""" + program: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `amendmentNumbers` field.""" + amendmentNumbers: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `analystLead` field.""" + analystLead: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `analystStatus` field.""" + analystStatus: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `externalStatus` field.""" + externalStatus: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `hasRfiOpen` field.""" + hasRfiOpen: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `intakeNumber` field.""" + intakeNumber: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `internalDescription` field.""" + internalDescription: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `organizationName` field.""" + organizationName: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `package` field.""" + package: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `projectName` field.""" + projectName: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `status` field.""" + status: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `statusSortFilter` field.""" + statusSortFilter: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `zone` field.""" + zone: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `zones` field.""" + zones: IntListFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusesByApplicationId` relation.""" + applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationStatusesByApplicationId` exist.""" + applicationStatusesByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `attachmentsByApplicationId` relation.""" + attachmentsByApplicationId: ApplicationToManyAttachmentFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `attachmentsByApplicationId` exist.""" + attachmentsByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationFormDataByApplicationId` relation.""" + applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationFormDataByApplicationId` exist.""" + applicationFormDataByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. + """ + applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + """Some related `applicationAnalystLeadsByApplicationId` exist.""" + applicationAnalystLeadsByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" + applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationRfiDataByApplicationId` exist.""" + applicationRfiDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `assessmentDataByApplicationId` relation.""" + assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `assessmentDataByApplicationId` exist.""" + assessmentDataByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationPackagesByApplicationId` relation.""" + applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationPackagesByApplicationId` exist.""" + applicationPackagesByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `conditionalApprovalDataByApplicationId` relation. + """ + conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + """Some related `conditionalApprovalDataByApplicationId` exist.""" + conditionalApprovalDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationGisDataByApplicationId` relation.""" + applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationGisDataByApplicationId` exist.""" + applicationGisDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationAnnouncementsByApplicationId` relation. + """ + applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnnouncementsByApplicationId` exist.""" + applicationAnnouncementsByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. + """ + applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" + applicationGisAssessmentHhsByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationSowDataByApplicationId` relation.""" + applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Some related `applicationSowDataByApplicationId` exist.""" + applicationSowDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `projectInformationDataByApplicationId` relation. + """ + projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `projectInformationDataByApplicationId` exist.""" + projectInformationDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `changeRequestDataByApplicationId` relation.""" + changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `changeRequestDataByApplicationId` exist.""" + changeRequestDataByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. + """ + applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `applicationCommunityProgressReportDataByApplicationId` exist. + """ + applicationCommunityProgressReportDataByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. + """ + applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `applicationCommunityReportExcelDataByApplicationId` exist. + """ + applicationCommunityReportExcelDataByApplicationIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationClaimsDataByApplicationId` relation. + """ + applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationClaimsDataByApplicationId` exist.""" + applicationClaimsDataByApplicationIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. + """ + applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationClaimsExcelDataByApplicationId` exist.""" + applicationClaimsExcelDataByApplicationIdExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationMilestoneDataByApplicationId` relation. + """ + applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationMilestoneDataByApplicationId` exist.""" + applicationMilestoneDataByApplicationIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + """ + Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. + """ + applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" + applicationMilestoneExcelDataByApplicationIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + """ + applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationInternalDescriptionsByApplicationId` exist.""" + applicationInternalDescriptionsByApplicationIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationProjectTypesByApplicationId` relation. + """ + applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationProjectTypesByApplicationId` exist.""" + applicationProjectTypesByApplicationIdExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `notificationsByApplicationId` relation.""" + notificationsByApplicationId: ApplicationToManyNotificationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `notificationsByApplicationId` exist.""" + notificationsByApplicationIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationAnnouncedsByApplicationId` relation. + """ + applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationAnnouncedsByApplicationId` exist.""" + applicationAnnouncedsByApplicationIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationFormTemplate9DataByApplicationId` relation. + """ + applicationFormTemplate9DataByApplicationId: ApplicationToManyApplicationFormTemplate9DataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationFormTemplate9DataByApplicationId` exist.""" + applicationFormTemplate9DataByApplicationIdExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `intakeByIntakeId` relation.""" + intakeByIntakeId: IntakeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `intakeByIntakeId` exists.""" + intakeByIntakeIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ApplicationFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ApplicationFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + """Negates the expression.""" + not: ApplicationFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ +""" +input IntListFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value.""" + equalTo: [Int] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Not equal to the specified value.""" + notEqualTo: [Int] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: [Int] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [Int] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than the specified value.""" + lessThan: [Int] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [Int] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + """Greater than the specified value.""" + greaterThan: [Int] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [Int] - """Only read the last `n` values of the set.""" - last: Int + """Contains the specified list of values.""" + contains: [Int] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Contained by the specified list of values.""" + containedBy: [Int] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Overlaps the specified list of values.""" + overlaps: [Int] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Any array item is equal to the specified value.""" + anyEqualTo: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Any array item is not equal to the specified value.""" + anyNotEqualTo: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Any array item is less than the specified value.""" + anyLessThan: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Any array item is greater than the specified value.""" + anyGreaterThan: Int - """Only read the last `n` values of the set.""" - last: Int + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: Int +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `status` field.""" + status: StringFilter - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `file` field.""" + file: UUIDFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `fileName` field.""" + fileName: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `fileType` field.""" + fileType: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `applicationStatusByApplicationStatusId` relation. + """ + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [AttachmentFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: AttachmentFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `description` field.""" + description: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFormDataFilter { + """Filter by the object’s `formDataId` field.""" + formDataId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `formDataByFormDataId` relation.""" + formDataByFormDataId: FormDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationFormDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationFormDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationFormDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `lastEditedPage` field.""" + lastEditedPage: StringFilter - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + """Filter by the object’s `formSchemaId` field.""" + formSchemaId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `reasonForChange` field.""" + reasonForChange: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `isEditable` field.""" + isEditable: BooleanFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationFormDataByFormDataId` relation.""" + applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationFormDataByFormDataId` exist.""" + applicationFormDataByFormDataIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. + """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" + formDataStatusTypeByFormDataStatusTypeIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `formByFormSchemaId` relation.""" + formByFormSchemaId: FormFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `formByFormSchemaId` exists.""" + formByFormSchemaIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for all expressions in this list.""" + and: [FormDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + """Checks for any expressions in this list.""" + or: [FormDataFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: FormDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ +""" +input JSONFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value.""" + equalTo: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not equal to the specified value.""" + notEqualTo: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: JSON - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: JSON - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Included in the specified list.""" + in: [JSON!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + """Not included in the specified list.""" + notIn: [JSON!] - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int + """Less than the specified value.""" + lessThan: JSON - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than or equal to the specified value.""" + lessThanOrEqualTo: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than the specified value.""" + greaterThan: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: JSON - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """Contains the specified JSON.""" + contains: JSON - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition + """Contains the specified key.""" + containsKey: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + """Contains all of the specified keys.""" + containsAllKeys: [String!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Contains any of the specified keys.""" + containsAnyKeys: [String!] - """Only read the last `n` values of the set.""" - last: Int + """Contained by the specified JSON.""" + containedBy: JSON +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +""" +scalar JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `description` field.""" + description: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" + formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `formDataByFormDataStatusTypeId` exist.""" + formDataByFormDataStatusTypeIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [FormDataStatusTypeFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [FormDataStatusTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: FormDataStatusTypeFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ +""" +input FormFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `slug` field.""" + slug: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonSchema` field.""" + jsonSchema: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `formType` field.""" + formType: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `formDataByFormSchemaId` relation.""" + formDataByFormSchemaId: FormToManyFormDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `formDataByFormSchemaId` exist.""" + formDataByFormSchemaIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `formTypeByFormType` relation.""" + formTypeByFormType: FormTypeFilter - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int + """A related `formTypeByFormType` exists.""" + formTypeByFormTypeExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [FormFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [FormFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: FormFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnnouncementCondition + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! +""" +A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ +""" +input FormTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `formsByFormType` relation.""" + formsByFormType: FormTypeToManyFormFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `formsByFormType` exist.""" + formsByFormTypeExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [FormTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [FormTypeFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: FormTypeFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ +""" +input FormTypeToManyFormFilter { + """ + Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `analystId` field.""" + analystId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + """Checks for all expressions in this list.""" + and: [ApplicationAnalystLeadFilter!] - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [ApplicationAnalystLeadFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: ApplicationAnalystLeadFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `active` field.""" + active: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `email` field.""" + email: StringFilter - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusTypeCondition + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [AnalystFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [AnalystFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + """Negates the expression.""" + not: AnalystFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationRfiDataFilter { + """Filter by the object’s `rfiDataId` field.""" + rfiDataId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rfiDataByRfiDataId` relation.""" + rfiDataByRfiDataId: RfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationRfiDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationRfiDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationRfiDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `rfiNumber` field.""" + rfiNumber: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" + applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationRfiDataByRfiDataId` exist.""" + applicationRfiDataByRfiDataIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. + """ + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" + rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [RfiDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [RfiDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: RfiDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" + rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `rfiDataByRfiDataStatusTypeId` exist.""" + rfiDataByRfiDataStatusTypeIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [RfiDataStatusTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [RfiDataStatusTypeFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: RfiDataStatusTypeFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeToManyRfiDataFilter { + """ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RfiDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RfiDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RfiDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `assessmentDataType` field.""" + assessmentDataType: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" + assessmentTypeByAssessmentDataType: AssessmentTypeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `assessmentTypeByAssessmentDataType` exists.""" + assessmentTypeByAssessmentDataTypeExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for all expressions in this list.""" + and: [AssessmentDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection! + """Checks for any expressions in this list.""" + or: [AssessmentDataFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: AssessmentDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" + assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `assessmentDataByAssessmentDataType` exist.""" + assessmentDataByAssessmentDataTypeExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [AssessmentTypeFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [AssessmentTypeFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection! + """Negates the expression.""" + not: AssessmentTypeFilter } """ -Table containing intake numbers and their respective open and closing dates +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -type Intake implements Node { +input AssessmentTypeToManyAssessmentDataFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! - - """Unique ID for each intake number""" - rowId: Int! - - """Open date and time for an intake number""" - openTimestamp: Datetime! - - """Close date and time for an intake number""" - closeTimestamp: Datetime! - - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! + every: AssessmentDataFilter """ - The name of the sequence used to generate CCBC ids. It is added via a trigger + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationNumberSeqName: String + some: AssessmentDataFilter - """created by user id""" - createdBy: Int + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} - """created at timestamp""" - createdAt: Datetime! +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """updated by user id""" - updatedBy: Int + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """updated at timestamp""" - updatedAt: Datetime! + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} - """archived by user id""" - archivedBy: Int +""" +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPackageFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Filter by the object’s `package` field.""" + package: IntFilter - """A description of the intake""" - description: String + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """A column to denote whether the intake is a rolling intake""" - rollingIntake: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Checks for all expressions in this list.""" + and: [ApplicationPackageFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationsConnection! + """Checks for any expressions in this list.""" + or: [ApplicationPackageFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: ApplicationPackageFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ConditionalApprovalDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ConditionalApprovalDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ConditionalApprovalDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! + """Negates the expression.""" + not: ConditionalApprovalDataFilter } """ -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -scalar UUID +input ApplicationToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + some: ApplicationGisDataFilter - """Primary key for the gapless counter""" - rowId: Int! + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} - """Primary key for the gapless counter""" - counter: Int! +""" +A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `batchId` field.""" + batchId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `gisDataByBatchId` relation.""" + gisDataByBatchId: GisDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `gisDataByBatchId` exists.""" + gisDataByBatchIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationGisDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationGisDataFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationGisDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input GisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationGisDataByBatchId` relation.""" + applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} + """Some related `applicationGisDataByBatchId` exist.""" + applicationGisDataByBatchIdExist: Boolean -"""A connection to a list of `Intake` values.""" -type IntakesConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A list of edges which contains the `Intake` and cursor to aid in pagination. - """ - edges: [IntakesEdge!]! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The count of *all* `Intake` you could get from the connection.""" - totalCount: Int! -} + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean -"""A `Intake` edge in the connection.""" -type IntakesEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The `Intake` at the end of the edge.""" - node: Intake -} + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean -"""A location in a connection that can be used for resuming pagination.""" -scalar Cursor + """Checks for all expressions in this list.""" + and: [GisDataFilter!] -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! + """Checks for any expressions in this list.""" + or: [GisDataFilter!] - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! + """Negates the expression.""" + not: GisDataFilter +} - """When paginating backwards, the cursor to continue.""" - startCursor: Cursor +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input GisDataToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter - """When paginating forwards, the cursor to continue.""" - endCursor: Cursor + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter + + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter } -"""Methods to use when ordering `Intake`.""" -enum IntakesOrderBy { - NATURAL - ID_ASC - ID_DESC - OPEN_TIMESTAMP_ASC - OPEN_TIMESTAMP_DESC - CLOSE_TIMESTAMP_ASC - CLOSE_TIMESTAMP_DESC - CCBC_INTAKE_NUMBER_ASC - CCBC_INTAKE_NUMBER_DESC - APPLICATION_NUMBER_SEQ_NAME_ASC - APPLICATION_NUMBER_SEQ_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - COUNTER_ID_ASC - COUNTER_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - HIDDEN_ASC - HIDDEN_DESC - HIDDEN_CODE_ASC - HIDDEN_CODE_DESC - ROLLING_INTAKE_ASC - ROLLING_INTAKE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter + + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter + + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter } """ -A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input IntakeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationAnnouncementFilter { + """Filter by the object’s `announcementId` field.""" + announcementId: IntFilter - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Filter by the object’s `isPrimary` field.""" + isPrimary: BooleanFilter - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Filter by the object’s `announcementByAnnouncementId` relation.""" + announcementByAnnouncementId: AnnouncementFilter - """Checks for equality with the object’s `counterId` field.""" - counterId: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Checks for equality with the object’s `description` field.""" - description: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Checks for equality with the object’s `rollingIntake` field.""" - rollingIntake: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationAnnouncementFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationAnnouncementFilter!] + + """Negates the expression.""" + not: ApplicationAnnouncementFilter } """ -A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ """ -input IntakeFilter { +input AnnouncementFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `openTimestamp` field.""" - openTimestamp: DatetimeFilter - - """Filter by the object’s `closeTimestamp` field.""" - closeTimestamp: DatetimeFilter - - """Filter by the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: IntFilter + """Filter by the object’s `ccbcNumbers` field.""" + ccbcNumbers: StringFilter - """Filter by the object’s `applicationNumberSeqName` field.""" - applicationNumberSeqName: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25919,26 +24990,13 @@ input IntakeFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `counterId` field.""" - counterId: IntFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `hidden` field.""" - hidden: BooleanFilter - - """Filter by the object’s `hiddenCode` field.""" - hiddenCode: UUIDFilter - - """Filter by the object’s `rollingIntake` field.""" - rollingIntake: BooleanFilter - - """Filter by the object’s `applicationsByIntakeId` relation.""" - applicationsByIntakeId: IntakeToManyApplicationFilter + """ + Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + """ + applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter - """Some related `applicationsByIntakeId` exist.""" - applicationsByIntakeIdExist: Boolean + """Some related `applicationAnnouncementsByAnnouncementId` exist.""" + applicationAnnouncementsByAnnouncementIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25958,357 +25016,395 @@ input IntakeFilter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `gaplessCounterByCounterId` relation.""" - gaplessCounterByCounterId: GaplessCounterFilter - - """A related `gaplessCounterByCounterId` exists.""" - gaplessCounterByCounterIdExists: Boolean - """Checks for all expressions in this list.""" - and: [IntakeFilter!] + and: [AnnouncementFilter!] """Checks for any expressions in this list.""" - or: [IntakeFilter!] + or: [AnnouncementFilter!] """Negates the expression.""" - not: IntakeFilter + not: AnnouncementFilter } """ -A filter to be used against Int fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input IntFilter { +input AnnouncementToManyApplicationAnnouncementFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean + every: ApplicationAnnouncementFilter - """Equal to the specified value.""" - equalTo: Int + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """Not equal to the specified value.""" - notEqualTo: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} +""" +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisAssessmentHhFilter { """ - Not equal to the specified value, treating null like an ordinary value. + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Int + every: ApplicationGisAssessmentHhFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Int + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter - """Included in the specified list.""" - in: [Int!] + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} - """Not included in the specified list.""" - notIn: [Int!] +""" +A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Less than the specified value.""" - lessThan: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Int + """Filter by the object’s `eligible` field.""" + eligible: FloatFilter - """Greater than the specified value.""" - greaterThan: Int + """Filter by the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: FloatFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Int -} + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter -""" -A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ -""" -input DatetimeFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Equal to the specified value.""" - equalTo: Datetime + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Not equal to the specified value.""" - notEqualTo: Datetime + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Datetime + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Datetime + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Included in the specified list.""" - in: [Datetime!] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Not included in the specified list.""" - notIn: [Datetime!] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: Datetime + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Datetime + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Greater than the specified value.""" - greaterThan: Datetime + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Datetime + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationGisAssessmentHhFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationGisAssessmentHhFilter!] + + """Negates the expression.""" + not: ApplicationGisAssessmentHhFilter } """ -A filter to be used against String fields. All fields are combined with a logical ‘and.’ +A filter to be used against Float fields. All fields are combined with a logical ‘and.’ """ -input StringFilter { +input FloatFilter { """ Is null (if `true` is specified) or is not null (if `false` is specified). """ isNull: Boolean """Equal to the specified value.""" - equalTo: String + equalTo: Float """Not equal to the specified value.""" - notEqualTo: String + notEqualTo: Float """ Not equal to the specified value, treating null like an ordinary value. """ - distinctFrom: String + distinctFrom: Float """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: String + notDistinctFrom: Float """Included in the specified list.""" - in: [String!] + in: [Float!] """Not included in the specified list.""" - notIn: [String!] + notIn: [Float!] """Less than the specified value.""" - lessThan: String + lessThan: Float """Less than or equal to the specified value.""" - lessThanOrEqualTo: String + lessThanOrEqualTo: Float """Greater than the specified value.""" - greaterThan: String + greaterThan: Float """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: String - - """Contains the specified string (case-sensitive).""" - includes: String + greaterThanOrEqualTo: Float +} - """Does not contain the specified string (case-sensitive).""" - notIncludes: String +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """Contains the specified string (case-insensitive).""" - includesInsensitive: String + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """Does not contain the specified string (case-insensitive).""" - notIncludesInsensitive: String + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """Starts with the specified string (case-sensitive).""" - startsWith: String +""" +A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Does not start with the specified string (case-sensitive).""" - notStartsWith: String + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Starts with the specified string (case-insensitive).""" - startsWithInsensitive: String + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Does not start with the specified string (case-insensitive).""" - notStartsWithInsensitive: String + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Ends with the specified string (case-sensitive).""" - endsWith: String + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Does not end with the specified string (case-sensitive).""" - notEndsWith: String + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Ends with the specified string (case-insensitive).""" - endsWithInsensitive: String + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Does not end with the specified string (case-insensitive).""" - notEndsWithInsensitive: String + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - like: String + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLike: String + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """ - Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - likeInsensitive: String + """Filter by the object’s `isAmendment` field.""" + isAmendment: BooleanFilter - """ - Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLikeInsensitive: String + """Filter by the object’s `sowTab2SBySowId` relation.""" + sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - """Equal to the specified value (case-insensitive).""" - equalToInsensitive: String + """Some related `sowTab2SBySowId` exist.""" + sowTab2SBySowIdExist: Boolean - """Not equal to the specified value (case-insensitive).""" - notEqualToInsensitive: String + """Filter by the object’s `sowTab1SBySowId` relation.""" + sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - """ - Not equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - distinctFromInsensitive: String + """Some related `sowTab1SBySowId` exist.""" + sowTab1SBySowIdExist: Boolean - """ - Equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - notDistinctFromInsensitive: String + """Filter by the object’s `sowTab7SBySowId` relation.""" + sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - """Included in the specified list (case-insensitive).""" - inInsensitive: [String!] + """Some related `sowTab7SBySowId` exist.""" + sowTab7SBySowIdExist: Boolean - """Not included in the specified list (case-insensitive).""" - notInInsensitive: [String!] + """Filter by the object’s `sowTab8SBySowId` relation.""" + sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter - """Less than the specified value (case-insensitive).""" - lessThanInsensitive: String + """Some related `sowTab8SBySowId` exist.""" + sowTab8SBySowIdExist: Boolean - """Less than or equal to the specified value (case-insensitive).""" - lessThanOrEqualToInsensitive: String + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Greater than the specified value (case-insensitive).""" - greaterThanInsensitive: String + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Greater than or equal to the specified value (case-insensitive).""" - greaterThanOrEqualToInsensitive: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationSowDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationSowDataFilter!] + + """Negates the expression.""" + not: ApplicationSowDataFilter } """ -A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ """ -input BooleanFilter { +input ApplicationSowDataToManySowTab2Filter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: Boolean + every: SowTab2Filter - """Not equal to the specified value.""" - notEqualTo: Boolean + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter """ - Not equal to the specified value, treating null like an ordinary value. + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Boolean + none: SowTab2Filter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Boolean +""" +A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab2Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Included in the specified list.""" - in: [Boolean!] + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Not included in the specified list.""" - notIn: [Boolean!] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Less than the specified value.""" - lessThan: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Greater than the specified value.""" - greaterThan: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Boolean -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -""" -A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ -""" -input UUIDFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Equal to the specified value.""" - equalTo: UUID + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Not equal to the specified value.""" - notEqualTo: UUID + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: UUID + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: UUID + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Included in the specified list.""" - in: [UUID!] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Not included in the specified list.""" - notIn: [UUID!] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: UUID + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: UUID + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Greater than the specified value.""" - greaterThan: UUID + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: UUID + """Checks for all expressions in this list.""" + and: [SowTab2Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab2Filter!] + + """Negates the expression.""" + not: SowTab2Filter } """ -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input IntakeToManyApplicationFilter { +input ApplicationSowDataToManySowTab1Filter { """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationFilter + every: SowTab1Filter """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationFilter + some: SowTab1Filter """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationFilter + none: SowTab1Filter } """ -A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationFilter { +input SowTab1Filter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `ccbcNumber` field.""" - ccbcNumber: StringFilter - - """Filter by the object’s `owner` field.""" - owner: StringFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Filter by the object’s `intakeId` field.""" - intakeId: IntFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26328,254 +25424,266 @@ input ApplicationFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `program` field.""" - program: StringFilter + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Filter by the object’s `amendmentNumbers` field.""" - amendmentNumbers: StringFilter + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Filter by the object’s `analystLead` field.""" - analystLead: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `analystStatus` field.""" - analystStatus: StringFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `externalStatus` field.""" - externalStatus: StringFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `hasRfiOpen` field.""" - hasRfiOpen: BooleanFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `intakeNumber` field.""" - intakeNumber: IntFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `internalDescription` field.""" - internalDescription: StringFilter + """Checks for all expressions in this list.""" + and: [SowTab1Filter!] - """Filter by the object’s `organizationName` field.""" - organizationName: StringFilter + """Checks for any expressions in this list.""" + or: [SowTab1Filter!] - """Filter by the object’s `package` field.""" - package: IntFilter + """Negates the expression.""" + not: SowTab1Filter +} - """Filter by the object’s `projectName` field.""" - projectName: StringFilter +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Filter by the object’s `status` field.""" - status: StringFilter + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """Filter by the object’s `statusSortFilter` field.""" - statusSortFilter: StringFilter +""" +A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab7Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `zone` field.""" - zone: IntFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Filter by the object’s `zones` field.""" - zones: IntListFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `assessmentDataByApplicationId` relation.""" - assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `assessmentDataByApplicationId` exist.""" - assessmentDataByApplicationIdExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Filter by the object’s `conditionalApprovalDataByApplicationId` relation. - """ - conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `conditionalApprovalDataByApplicationId` exist.""" - conditionalApprovalDataByApplicationIdExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. - """ - applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" - applicationGisAssessmentHhsByApplicationIdExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `applicationGisDataByApplicationId` relation.""" - applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Some related `applicationGisDataByApplicationId` exist.""" - applicationGisDataByApplicationIdExist: Boolean + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - Filter by the object’s `projectInformationDataByApplicationId` relation. - """ - projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `projectInformationDataByApplicationId` exist.""" - projectInformationDataByApplicationIdExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Filter by the object’s `applicationClaimsDataByApplicationId` relation. - """ - applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationClaimsDataByApplicationId` exist.""" - applicationClaimsDataByApplicationIdExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. - """ - applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationClaimsExcelDataByApplicationId` exist.""" - applicationClaimsExcelDataByApplicationIdExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. - """ - applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + """Checks for all expressions in this list.""" + and: [SowTab7Filter!] - """ - Some related `applicationCommunityProgressReportDataByApplicationId` exist. - """ - applicationCommunityProgressReportDataByApplicationIdExist: Boolean + """Checks for any expressions in this list.""" + or: [SowTab7Filter!] - """ - Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. - """ - applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + """Negates the expression.""" + not: SowTab7Filter +} +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab8Filter { """ - Some related `applicationCommunityReportExcelDataByApplicationId` exist. + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityReportExcelDataByApplicationIdExist: Boolean + every: SowTab8Filter """ - Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter - - """Some related `applicationInternalDescriptionsByApplicationId` exist.""" - applicationInternalDescriptionsByApplicationIdExist: Boolean + some: SowTab8Filter """ - Filter by the object’s `applicationMilestoneDataByApplicationId` relation. + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter - - """Some related `applicationMilestoneDataByApplicationId` exist.""" - applicationMilestoneDataByApplicationIdExist: Boolean + none: SowTab8Filter +} - """ - Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. - """ - applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter +""" +A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab8Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" - applicationMilestoneExcelDataByApplicationIdExist: Boolean + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Filter by the object’s `applicationSowDataByApplicationId` relation.""" - applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Some related `applicationSowDataByApplicationId` exist.""" - applicationSowDataByApplicationIdExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `changeRequestDataByApplicationId` relation.""" - changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `changeRequestDataByApplicationId` exist.""" - changeRequestDataByApplicationIdExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `notificationsByApplicationId` relation.""" - notificationsByApplicationId: ApplicationToManyNotificationFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `notificationsByApplicationId` exist.""" - notificationsByApplicationIdExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `applicationPackagesByApplicationId` relation.""" - applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `applicationPackagesByApplicationId` exist.""" - applicationPackagesByApplicationIdExist: Boolean - - """ - Filter by the object’s `applicationProjectTypesByApplicationId` relation. - """ - applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter - - """Some related `applicationProjectTypesByApplicationId` exist.""" - applicationProjectTypesByApplicationIdExist: Boolean - - """Filter by the object’s `attachmentsByApplicationId` relation.""" - attachmentsByApplicationId: ApplicationToManyAttachmentFilter - - """Some related `attachmentsByApplicationId` exist.""" - attachmentsByApplicationIdExist: Boolean + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """ - Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. - """ - applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Some related `applicationAnalystLeadsByApplicationId` exist.""" - applicationAnalystLeadsByApplicationIdExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationAnnouncementsByApplicationId` relation. - """ - applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `applicationAnnouncementsByApplicationId` exist.""" - applicationAnnouncementsByApplicationIdExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `applicationFormDataByApplicationId` relation.""" - applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `applicationFormDataByApplicationId` exist.""" - applicationFormDataByApplicationIdExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" - applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `applicationRfiDataByApplicationId` exist.""" - applicationRfiDataByApplicationIdExist: Boolean + """Checks for all expressions in this list.""" + and: [SowTab8Filter!] - """Filter by the object’s `applicationStatusesByApplicationId` relation.""" - applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + """Checks for any expressions in this list.""" + or: [SowTab8Filter!] - """Some related `applicationStatusesByApplicationId` exist.""" - applicationStatusesByApplicationIdExist: Boolean + """Negates the expression.""" + not: SowTab8Filter +} +""" +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyProjectInformationDataFilter { """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean + every: ProjectInformationDataFilter """ - Filter by the object’s `applicationAnnouncedsByApplicationId` relation. + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter - - """Some related `applicationAnnouncedsByApplicationId` exist.""" - applicationAnnouncedsByApplicationIdExist: Boolean + some: ProjectInformationDataFilter """ - Filter by the object’s `applicationFormTemplate9DataByApplicationId` relation. + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationFormTemplate9DataByApplicationId: ApplicationToManyApplicationFormTemplate9DataFilter + none: ProjectInformationDataFilter +} - """Some related `applicationFormTemplate9DataByApplicationId` exist.""" - applicationFormTemplate9DataByApplicationIdExist: Boolean +""" +A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +""" +input ProjectInformationDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `intakeByIntakeId` relation.""" - intakeByIntakeId: IntakeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """A related `intakeByIntakeId` exists.""" - intakeByIntakeIdExists: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26596,102 +25704,127 @@ input ApplicationFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationFilter!] + and: [ProjectInformationDataFilter!] """Checks for any expressions in this list.""" - or: [ApplicationFilter!] + or: [ProjectInformationDataFilter!] """Negates the expression.""" - not: ApplicationFilter + not: ProjectInformationDataFilter } """ -A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ """ -input IntListFilter { +input ApplicationToManyChangeRequestDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: [Int] + every: ChangeRequestDataFilter - """Not equal to the specified value.""" - notEqualTo: [Int] + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: [Int] + none: ChangeRequestDataFilter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [Int] +""" +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ChangeRequestDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Less than the specified value.""" - lessThan: [Int] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [Int] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Greater than the specified value.""" - greaterThan: [Int] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [Int] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Contains the specified list of values.""" - contains: [Int] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Contained by the specified list of values.""" - containedBy: [Int] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Overlaps the specified list of values.""" - overlaps: [Int] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Any array item is equal to the specified value.""" - anyEqualTo: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Any array item is not equal to the specified value.""" - anyNotEqualTo: Int + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """Any array item is less than the specified value.""" - anyLessThan: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Any array item is greater than the specified value.""" - anyGreaterThan: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ChangeRequestDataFilter!] + + """Checks for any expressions in this list.""" + or: [ChangeRequestDataFilter!] + + """Negates the expression.""" + not: ChangeRequestDataFilter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyAssessmentDataFilter { +input ApplicationToManyApplicationCommunityProgressReportDataFilter { """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AssessmentDataFilter + every: ApplicationCommunityProgressReportDataFilter """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AssessmentDataFilter + some: ApplicationCommunityProgressReportDataFilter """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AssessmentDataFilter + none: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input AssessmentDataFilter { +input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -26701,9 +25834,6 @@ input AssessmentDataFilter { """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `assessmentDataType` field.""" - assessmentDataType: StringFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26722,14 +25852,17 @@ input AssessmentDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter + + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter + """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" - assessmentTypeByAssessmentDataType: AssessmentTypeFilter - - """A related `assessmentTypeByAssessmentDataType` exists.""" - assessmentTypeByAssessmentDataTypeExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26750,141 +25883,135 @@ input AssessmentDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AssessmentDataFilter!] + and: [ApplicationCommunityProgressReportDataFilter!] """Checks for any expressions in this list.""" - or: [AssessmentDataFilter!] + or: [ApplicationCommunityProgressReportDataFilter!] """Negates the expression.""" - not: AssessmentDataFilter + not: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ """ -input JSONFilter { +input ApplicationToManyApplicationCommunityReportExcelDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: JSON + every: ApplicationCommunityReportExcelDataFilter - """Not equal to the specified value.""" - notEqualTo: JSON + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: JSON + none: ApplicationCommunityReportExcelDataFilter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: JSON +""" +A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Included in the specified list.""" - in: [JSON!] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Not included in the specified list.""" - notIn: [JSON!] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Less than the specified value.""" - lessThan: JSON + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: JSON + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Greater than the specified value.""" - greaterThan: JSON + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: JSON + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Contains the specified JSON.""" - contains: JSON + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Contains the specified key.""" - containsKey: String + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Contains all of the specified keys.""" - containsAllKeys: [String!] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Contains any of the specified keys.""" - containsAnyKeys: [String!] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Contained by the specified JSON.""" - containedBy: JSON -} + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter -""" -A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). -""" -scalar JSON + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean -""" -A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" - assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `assessmentDataByAssessmentDataType` exist.""" - assessmentDataByAssessmentDataTypeExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AssessmentTypeFilter!] + and: [ApplicationCommunityReportExcelDataFilter!] """Checks for any expressions in this list.""" - or: [AssessmentTypeFilter!] + or: [ApplicationCommunityReportExcelDataFilter!] """Negates the expression.""" - not: AssessmentTypeFilter + not: ApplicationCommunityReportExcelDataFilter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input AssessmentTypeToManyAssessmentDataFilter { +input ApplicationToManyApplicationClaimsDataFilter { """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AssessmentDataFilter + every: ApplicationClaimsDataFilter """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AssessmentDataFilter + some: ApplicationClaimsDataFilter """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AssessmentDataFilter + none: ApplicationClaimsDataFilter } """ -A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserFilter { +input ApplicationClaimsDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter - - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `emailAddress` field.""" - emailAddress: StringFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26904,894 +26031,903 @@ input CcbcUserFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `applicationsByCreatedBy` exist.""" - applicationsByCreatedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `applicationsByUpdatedBy` relation.""" - applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `applicationsByUpdatedBy` exist.""" - applicationsByUpdatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `applicationsByArchivedBy` relation.""" - applicationsByArchivedBy: CcbcUserToManyApplicationFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationsByArchivedBy` exist.""" - applicationsByArchivedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `assessmentDataByCreatedBy` relation.""" - assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `assessmentDataByCreatedBy` exist.""" - assessmentDataByCreatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" - assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + """Checks for all expressions in this list.""" + and: [ApplicationClaimsDataFilter!] - """Some related `assessmentDataByUpdatedBy` exist.""" - assessmentDataByUpdatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationClaimsDataFilter!] - """Filter by the object’s `assessmentDataByArchivedBy` relation.""" - assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + """Negates the expression.""" + not: ApplicationClaimsDataFilter +} - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Filter by the object’s `announcementsByCreatedBy` relation.""" - announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter - """Some related `announcementsByCreatedBy` exist.""" - announcementsByCreatedByExist: Boolean + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} - """Filter by the object’s `announcementsByUpdatedBy` relation.""" - announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter +""" +A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationClaimsExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `announcementsByUpdatedBy` exist.""" - announcementsByUpdatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `announcementsByArchivedBy` relation.""" - announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `conditionalApprovalDataByCreatedBy` exist.""" - conditionalApprovalDataByCreatedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" - conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `conditionalApprovalDataByUpdatedBy` exist.""" - conditionalApprovalDataByUpdatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" - conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `conditionalApprovalDataByArchivedBy` exist.""" - conditionalApprovalDataByArchivedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `formDataByCreatedBy` relation.""" - formDataByCreatedBy: CcbcUserToManyFormDataFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `formDataByCreatedBy` exist.""" - formDataByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `formDataByUpdatedBy` relation.""" - formDataByUpdatedBy: CcbcUserToManyFormDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `formDataByUpdatedBy` exist.""" - formDataByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `formDataByArchivedBy` relation.""" - formDataByArchivedBy: CcbcUserToManyFormDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. - """ - applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" - applicationGisAssessmentHhsByCreatedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationClaimsExcelDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationClaimsExcelDataFilter!] + + """Negates the expression.""" + not: ApplicationClaimsExcelDataFilter +} +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneDataFilter { """ - Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + every: ApplicationMilestoneDataFilter - """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" - applicationGisAssessmentHhsByUpdatedByExist: Boolean + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter """ - Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + none: ApplicationMilestoneDataFilter +} - """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" - applicationGisAssessmentHhsByArchivedByExist: Boolean +""" +A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" - applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationGisDataByCreatedBy` exist.""" - applicationGisDataByCreatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" - applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationGisDataByArchivedBy` exist.""" - applicationGisDataByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `rfiDataByCreatedBy` relation.""" - rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `rfiDataByCreatedBy` exist.""" - rfiDataByCreatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `rfiDataByUpdatedBy` relation.""" - rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `rfiDataByArchivedBy` exist.""" - rfiDataByArchivedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `intakesByCreatedBy` relation.""" - intakesByCreatedBy: CcbcUserToManyIntakeFilter + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneDataFilter!] - """Some related `intakesByCreatedBy` exist.""" - intakesByCreatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneDataFilter!] - """Filter by the object’s `intakesByUpdatedBy` relation.""" - intakesByUpdatedBy: CcbcUserToManyIntakeFilter + """Negates the expression.""" + not: ApplicationMilestoneDataFilter +} - """Some related `intakesByUpdatedBy` exist.""" - intakesByUpdatedByExist: Boolean +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter - """Filter by the object’s `intakesByArchivedBy` relation.""" - intakesByArchivedBy: CcbcUserToManyIntakeFilter + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} - """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" - applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter +""" +A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `applicationClaimsDataByCreatedBy` exist.""" - applicationClaimsDataByCreatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" - applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Some related `applicationClaimsDataByUpdatedBy` exist.""" - applicationClaimsDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" - applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationClaimsDataByArchivedBy` exist.""" - applicationClaimsDataByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. - """ - applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" - applicationClaimsExcelDataByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. - """ - applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" - applicationClaimsExcelDataByUpdatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. - """ - applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" - applicationClaimsExcelDataByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ - applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Some related `applicationCommunityProgressReportDataByCreatedBy` exist. - """ - applicationCommunityProgressReportDataByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. - """ - applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. - """ - applicationCommunityProgressReportDataByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneExcelDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneExcelDataFilter!] + + """Negates the expression.""" + not: ApplicationMilestoneExcelDataFilter +} +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationInternalDescriptionFilter { """ - Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + every: ApplicationInternalDescriptionFilter """ - Some related `applicationCommunityProgressReportDataByArchivedBy` exist. + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByArchivedByExist: Boolean + some: ApplicationInternalDescriptionFilter """ - Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + none: ApplicationInternalDescriptionFilter +} - """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" - applicationCommunityReportExcelDataByCreatedByExist: Boolean +""" +A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. - """ - applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" - applicationCommunityReportExcelDataByUpdatedByExist: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """ - Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. - """ - applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" - applicationCommunityReportExcelDataByArchivedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. - """ - applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" - applicationInternalDescriptionsByCreatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. - """ - applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" - applicationInternalDescriptionsByUpdatedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. - """ - applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" - applicationInternalDescriptionsByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" - applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByCreatedBy` exist.""" - applicationMilestoneDataByCreatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" - applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByUpdatedBy` exist.""" - applicationMilestoneDataByUpdatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. - """ - applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByArchivedBy` exist.""" - applicationMilestoneDataByArchivedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. - """ - applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """Checks for all expressions in this list.""" + and: [ApplicationInternalDescriptionFilter!] - """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" - applicationMilestoneExcelDataByCreatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationInternalDescriptionFilter!] + + """Negates the expression.""" + not: ApplicationInternalDescriptionFilter +} +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationProjectTypeFilter { """ - Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - - """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" - applicationMilestoneExcelDataByUpdatedByExist: Boolean + every: ApplicationProjectTypeFilter """ - Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + some: ApplicationProjectTypeFilter - """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" - applicationMilestoneExcelDataByArchivedByExist: Boolean + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter +""" +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationProjectTypeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """Filter by the object’s `projectType` field.""" + projectType: StringFilter - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" - cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `cbcProjectsByCreatedBy` exist.""" - cbcProjectsByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" - cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `cbcProjectsByUpdatedBy` exist.""" - cbcProjectsByUpdatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" - cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `cbcProjectsByArchivedBy` exist.""" - cbcProjectsByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationProjectTypeFilter!] - """Filter by the object’s `notificationsByCreatedBy` relation.""" - notificationsByCreatedBy: CcbcUserToManyNotificationFilter + """Checks for any expressions in this list.""" + or: [ApplicationProjectTypeFilter!] - """Some related `notificationsByCreatedBy` exist.""" - notificationsByCreatedByExist: Boolean + """Negates the expression.""" + not: ApplicationProjectTypeFilter +} - """Filter by the object’s `notificationsByUpdatedBy` relation.""" - notificationsByUpdatedBy: CcbcUserToManyNotificationFilter +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Some related `notificationsByUpdatedBy` exist.""" - notificationsByUpdatedByExist: Boolean + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """Filter by the object’s `notificationsByArchivedBy` relation.""" - notificationsByArchivedBy: CcbcUserToManyNotificationFilter + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Some related `notificationsByArchivedBy` exist.""" - notificationsByArchivedByExist: Boolean +""" +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input NotificationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """Some related `applicationPackagesByCreatedBy` exist.""" - applicationPackagesByCreatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" - applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Some related `applicationPackagesByUpdatedBy` exist.""" - applicationPackagesByUpdatedByExist: Boolean + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter - """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" - applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationPackagesByArchivedBy` exist.""" - applicationPackagesByArchivedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" - applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationProjectTypesByCreatedBy` exist.""" - applicationProjectTypesByCreatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" - applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `applicationProjectTypesByUpdatedBy` exist.""" - applicationProjectTypesByUpdatedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" - applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `applicationProjectTypesByArchivedBy` exist.""" - applicationProjectTypesByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" - ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """Some related `ccbcUsersByCreatedBy` exist.""" - ccbcUsersByCreatedByExist: Boolean + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean - """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" - ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `ccbcUsersByArchivedBy` exist.""" - ccbcUsersByArchivedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `attachmentsByCreatedBy` relation.""" - attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `attachmentsByCreatedBy` exist.""" - attachmentsByCreatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `attachmentsByUpdatedBy` relation.""" - attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + """Checks for all expressions in this list.""" + and: [NotificationFilter!] - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [NotificationFilter!] - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """Negates the expression.""" + not: NotificationFilter +} - """Some related `attachmentsByArchivedBy` exist.""" - attachmentsByArchivedByExist: Boolean +""" +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `gisDataByCreatedBy` relation.""" - gisDataByCreatedBy: CcbcUserToManyGisDataFilter + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """Filter by the object’s `subject` field.""" + subject: StringFilter - """Some related `gisDataByUpdatedBy` exist.""" - gisDataByUpdatedByExist: Boolean + """Filter by the object’s `body` field.""" + body: StringFilter - """Filter by the object’s `gisDataByArchivedBy` relation.""" - gisDataByArchivedBy: CcbcUserToManyGisDataFilter + """Filter by the object’s `messageId` field.""" + messageId: StringFilter - """Some related `gisDataByArchivedBy` exist.""" - gisDataByArchivedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `analystsByCreatedBy` exist.""" - analystsByCreatedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `analystsByUpdatedBy` relation.""" - analystsByUpdatedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `analystsByUpdatedBy` exist.""" - analystsByUpdatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `analystsByArchivedBy` relation.""" - analystsByArchivedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `analystsByArchivedBy` exist.""" - analystsByArchivedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" - applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Filter by the object’s `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Some related `applicationAnalystLeadsByCreatedBy` exist.""" - applicationAnalystLeadsByCreatedByExist: Boolean + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean - """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" - applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" - applicationAnalystLeadsByUpdatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" - applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationAnalystLeadsByArchivedBy` exist.""" - applicationAnalystLeadsByArchivedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" - applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationAnnouncementsByCreatedBy` exist.""" - applicationAnnouncementsByCreatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" - applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + """Checks for all expressions in this list.""" + and: [EmailRecordFilter!] - """Some related `applicationAnnouncementsByUpdatedBy` exist.""" - applicationAnnouncementsByUpdatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [EmailRecordFilter!] + """Negates the expression.""" + not: EmailRecordFilter +} + +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordToManyNotificationFilter { """ - Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter - - """Some related `applicationAnnouncementsByArchivedBy` exist.""" - applicationAnnouncementsByArchivedByExist: Boolean - - """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" - applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter - - """Some related `applicationStatusesByCreatedBy` exist.""" - applicationStatusesByCreatedByExist: Boolean - - """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" - applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter - - """Some related `applicationStatusesByArchivedBy` exist.""" - applicationStatusesByArchivedByExist: Boolean - - """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" - applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter - - """Some related `applicationStatusesByUpdatedBy` exist.""" - applicationStatusesByUpdatedByExist: Boolean - - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" - emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByCreatedBy` exist.""" - emailRecordsByCreatedByExist: Boolean - - """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" - emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByUpdatedBy` exist.""" - emailRecordsByUpdatedByExist: Boolean - - """Filter by the object’s `emailRecordsByArchivedBy` relation.""" - emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByArchivedBy` exist.""" - emailRecordsByArchivedByExist: Boolean + every: NotificationFilter - """Filter by the object’s `recordVersionsByCreatedBy` relation.""" - recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Filter by the object’s `sowTab1SByCreatedBy` relation.""" - sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """Some related `sowTab1SByCreatedBy` exist.""" - sowTab1SByCreatedByExist: Boolean + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" - sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Some related `sowTab1SByUpdatedBy` exist.""" - sowTab1SByUpdatedByExist: Boolean +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `sowTab1SByArchivedBy` relation.""" - sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `sowTab1SByArchivedBy` exist.""" - sowTab1SByArchivedByExist: Boolean + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """Filter by the object’s `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + """Filter by the object’s `comment` field.""" + comment: StringFilter - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} +""" +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncedFilter { """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + every: ApplicationAnnouncedFilter """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + some: ApplicationAnnouncedFilter """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean + none: ApplicationAnnouncedFilter +} - """Filter by the object’s `cbcsByCreatedBy` relation.""" - cbcsByCreatedBy: CcbcUserToManyCbcFilter +""" +A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnnouncedFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `cbcsByCreatedBy` exist.""" - cbcsByCreatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `cbcsByUpdatedBy` relation.""" - cbcsByUpdatedBy: CcbcUserToManyCbcFilter + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """Some related `cbcsByUpdatedBy` exist.""" - cbcsByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `cbcsByArchivedBy` relation.""" - cbcsByArchivedBy: CcbcUserToManyCbcFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `cbcsByArchivedBy` exist.""" - cbcsByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `cbcDataByCreatedBy` relation.""" - cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `cbcDataByCreatedBy` exist.""" - cbcDataByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `cbcDataByUpdatedBy` relation.""" - cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `cbcDataByUpdatedBy` exist.""" - cbcDataByUpdatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `cbcDataByArchivedBy` relation.""" - cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `cbcDataByArchivedBy` exist.""" - cbcDataByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" - cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" - cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. - """ - cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" - cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationAnnouncedFilter!] - """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" - cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + """Checks for any expressions in this list.""" + or: [ApplicationAnnouncedFilter!] - """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" - cbcDataChangeReasonsByCreatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" - cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" - cbcDataChangeReasonsByUpdatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" - cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" - cbcDataChangeReasonsByArchivedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" - communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByCreatedBy` exist.""" - communitiesSourceDataByCreatedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" - communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByUpdatedBy` exist.""" - communitiesSourceDataByUpdatedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" - communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByArchivedBy` exist.""" - communitiesSourceDataByArchivedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" - cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" - cbcProjectCommunitiesByCreatedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" - cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" - cbcProjectCommunitiesByUpdatedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" - cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" - cbcProjectCommunitiesByArchivedByExist: Boolean - - """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" - reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter - - """Some related `reportingGcpesByCreatedBy` exist.""" - reportingGcpesByCreatedByExist: Boolean - - """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" - reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter - - """Some related `reportingGcpesByUpdatedBy` exist.""" - reportingGcpesByUpdatedByExist: Boolean + """Negates the expression.""" + not: ApplicationAnnouncedFilter +} - """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" - reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter +""" +A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormTemplate9DataFilter { + """ + Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormTemplate9DataFilter - """Some related `reportingGcpesByArchivedBy` exist.""" - reportingGcpesByArchivedByExist: Boolean + """ + Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormTemplate9DataFilter - """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" - applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter + """ + No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormTemplate9DataFilter +} - """Some related `applicationAnnouncedsByCreatedBy` exist.""" - applicationAnnouncedsByCreatedByExist: Boolean +""" +A filter to be used against `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFormTemplate9DataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" - applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationAnnouncedsByUpdatedBy` exist.""" - applicationAnnouncedsByUpdatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" - applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter + """Filter by the object’s `errors` field.""" + errors: JSONFilter - """Some related `applicationAnnouncedsByArchivedBy` exist.""" - applicationAnnouncedsByArchivedByExist: Boolean + """Filter by the object’s `source` field.""" + source: JSONFilter - """ - Filter by the object’s `applicationFormTemplate9DataByCreatedBy` relation. - """ - applicationFormTemplate9DataByCreatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationFormTemplate9DataByCreatedBy` exist.""" - applicationFormTemplate9DataByCreatedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Filter by the object’s `applicationFormTemplate9DataByUpdatedBy` relation. - """ - applicationFormTemplate9DataByUpdatedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationFormTemplate9DataByUpdatedBy` exist.""" - applicationFormTemplate9DataByUpdatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Filter by the object’s `applicationFormTemplate9DataByArchivedBy` relation. - """ - applicationFormTemplate9DataByArchivedBy: CcbcUserToManyApplicationFormTemplate9DataFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `applicationFormTemplate9DataByArchivedBy` exist.""" - applicationFormTemplate9DataByArchivedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `keycloakJwtsBySub` relation.""" - keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `keycloakJwtsBySub` exist.""" - keycloakJwtsBySubExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27812,13 +26948,59 @@ input CcbcUserFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CcbcUserFilter!] + and: [ApplicationFormTemplate9DataFilter!] """Checks for any expressions in this list.""" - or: [CcbcUserFilter!] + or: [ApplicationFormTemplate9DataFilter!] """Negates the expression.""" - not: CcbcUserFilter + not: ApplicationFormTemplate9DataFilter +} + +""" +A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `counter` field.""" + counter: IntFilter + + """Filter by the object’s `intakesByCounterId` relation.""" + intakesByCounterId: GaplessCounterToManyIntakeFilter + + """Some related `intakesByCounterId` exist.""" + intakesByCounterIdExist: Boolean + + """Checks for all expressions in this list.""" + and: [GaplessCounterFilter!] + + """Checks for any expressions in this list.""" + or: [GaplessCounterFilter!] + + """Negates the expression.""" + not: GaplessCounterFilter +} + +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter + + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter + + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter } """ @@ -27842,171 +27024,224 @@ input CcbcUserToManyApplicationFilter { } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAssessmentDataFilter { +input CcbcUserToManyApplicationStatusFilter { """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AssessmentDataFilter + every: ApplicationStatusFilter """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AssessmentDataFilter + some: ApplicationStatusFilter """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AssessmentDataFilter + none: ApplicationStatusFilter } """ -A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAnnouncementFilter { +input CcbcUserToManyAttachmentFilter { """ - Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AnnouncementFilter + every: AttachmentFilter """ - Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AnnouncementFilter + some: AttachmentFilter """ - No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AnnouncementFilter + none: AttachmentFilter } """ -A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input AnnouncementFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `ccbcNumbers` field.""" - ccbcNumbers: StringFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter +input CcbcUserToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +""" +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter +} - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter """ - Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter + some: ApplicationAnalystLeadFilter - """Some related `applicationAnnouncementsByAnnouncementId` exist.""" - applicationAnnouncementsByAnnouncementIdExist: Boolean + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +""" +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyRfiDataFilter { + """ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RfiDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RfiDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RfiDataFilter +} - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} - """Checks for all expressions in this list.""" - and: [AnnouncementFilter!] +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """Checks for any expressions in this list.""" - or: [AnnouncementFilter!] + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """Negates the expression.""" - not: AnnouncementFilter + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ """ -input AnnouncementToManyApplicationAnnouncementFilter { +input CcbcUserToManyRecordVersionFilter { """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnnouncementFilter + every: RecordVersionFilter """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnnouncementFilter + some: RecordVersionFilter """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnnouncementFilter + none: RecordVersionFilter } """ -A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationAnnouncementFilter { - """Filter by the object’s `announcementId` field.""" - announcementId: IntFilter +input RecordVersionFilter { + """Filter by the object’s `rowId` field.""" + rowId: BigIntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `op` field.""" + op: OperationFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `tableName` field.""" + tableName: StringFilter - """Filter by the object’s `isPrimary` field.""" - isPrimary: BooleanFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `announcementByAnnouncementId` relation.""" - announcementByAnnouncementId: AnnouncementFilter + """Filter by the object’s `record` field.""" + record: JSONFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28014,421 +27249,259 @@ input ApplicationAnnouncementFilter { """A related `ccbcUserByCreatedBy` exists.""" ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncementFilter!] + and: [RecordVersionFilter!] """Checks for any expressions in this list.""" - or: [ApplicationAnnouncementFilter!] + or: [RecordVersionFilter!] """Negates the expression.""" - not: ApplicationAnnouncementFilter + not: RecordVersionFilter } """ -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyConditionalApprovalDataFilter { +input BigIntFilter { """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ConditionalApprovalDataFilter + isNull: Boolean - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """Equal to the specified value.""" + equalTo: BigInt + + """Not equal to the specified value.""" + notEqualTo: BigInt """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ConditionalApprovalDataFilter -} + distinctFrom: BigInt -""" -A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ConditionalApprovalDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigInt - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Included in the specified list.""" + in: [BigInt!] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Not included in the specified list.""" + notIn: [BigInt!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than the specified value.""" + lessThan: BigInt - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigInt - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Greater than the specified value.""" + greaterThan: BigInt - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ConditionalApprovalDataFilter!] - - """Checks for any expressions in this list.""" - or: [ConditionalApprovalDataFilter!] - - """Negates the expression.""" - not: ConditionalApprovalDataFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigInt } """ -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. """ -input CcbcUserToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter - - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter - - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} +scalar BigInt """ -A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ """ -input FormDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `lastEditedPage` field.""" - lastEditedPage: StringFilter - - """Filter by the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `formSchemaId` field.""" - formSchemaId: IntFilter - - """Filter by the object’s `reasonForChange` field.""" - reasonForChange: StringFilter - - """Filter by the object’s `isEditable` field.""" - isEditable: BooleanFilter - - """Filter by the object’s `applicationFormDataByFormDataId` relation.""" - applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter - - """Some related `applicationFormDataByFormDataId` exist.""" - applicationFormDataByFormDataIdExist: Boolean - +input OperationFilter { """ - Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. + Is null (if `true` is specified) or is not null (if `false` is specified). """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter - - """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" - formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + isNull: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Equal to the specified value.""" + equalTo: Operation - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Not equal to the specified value.""" + notEqualTo: Operation - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Operation - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Included in the specified list.""" + in: [Operation!] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Not included in the specified list.""" + notIn: [Operation!] - """Filter by the object’s `formByFormSchemaId` relation.""" - formByFormSchemaId: FormFilter + """Less than the specified value.""" + lessThan: Operation - """A related `formByFormSchemaId` exists.""" - formByFormSchemaIdExists: Boolean + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation - """Checks for all expressions in this list.""" - and: [FormDataFilter!] + """Greater than the specified value.""" + greaterThan: Operation - """Checks for any expressions in this list.""" - or: [FormDataFilter!] + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} - """Negates the expression.""" - not: FormDataFilter +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE } """ -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ """ -input FormDataToManyApplicationFormDataFilter { +input BigFloatFilter { """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationFormDataFilter + isNull: Boolean - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """Equal to the specified value.""" + equalTo: BigFloat + + """Not equal to the specified value.""" + notEqualTo: BigFloat """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ApplicationFormDataFilter -} + distinctFrom: BigFloat -""" -A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormDataFilter { - """Filter by the object’s `formDataId` field.""" - formDataId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Included in the specified list.""" + in: [BigFloat!] - """Filter by the object’s `formDataByFormDataId` relation.""" - formDataByFormDataId: FormDataFilter + """Not included in the specified list.""" + notIn: [BigFloat!] - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Less than the specified value.""" + lessThan: BigFloat - """Checks for all expressions in this list.""" - and: [ApplicationFormDataFilter!] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """Checks for any expressions in this list.""" - or: [ApplicationFormDataFilter!] + """Greater than the specified value.""" + greaterThan: BigFloat - """Negates the expression.""" - not: ApplicationFormDataFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat } """ -A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +A floating point number that requires more precision than IEEE 754 binary 64 """ -input FormDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" - formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - - """Some related `formDataByFormDataStatusTypeId` exist.""" - formDataByFormDataStatusTypeIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [FormDataStatusTypeFilter!] - - """Checks for any expressions in this list.""" - or: [FormDataStatusTypeFilter!] - - """Negates the expression.""" - not: FormDataStatusTypeFilter -} +scalar BigFloat """ -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input FormDataStatusTypeToManyFormDataFilter { +input CcbcUserToManyConditionalApprovalDataFilter { """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormDataFilter + every: ConditionalApprovalDataFilter """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormDataFilter + some: ConditionalApprovalDataFilter """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormDataFilter + none: ConditionalApprovalDataFilter } """ -A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ """ -input FormFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `slug` field.""" - slug: StringFilter - - """Filter by the object’s `jsonSchema` field.""" - jsonSchema: JSONFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `formType` field.""" - formType: StringFilter - - """Filter by the object’s `formDataByFormSchemaId` relation.""" - formDataByFormSchemaId: FormToManyFormDataFilter - - """Some related `formDataByFormSchemaId` exist.""" - formDataByFormSchemaIdExist: Boolean - - """Filter by the object’s `formTypeByFormType` relation.""" - formTypeByFormType: FormTypeFilter - - """A related `formTypeByFormType` exists.""" - formTypeByFormTypeExists: Boolean - - """Checks for all expressions in this list.""" - and: [FormFilter!] +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter - """Checks for any expressions in this list.""" - or: [FormFilter!] + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter - """Negates the expression.""" - not: FormFilter + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter } """ -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input FormToManyFormDataFilter { +input CcbcUserToManyApplicationGisDataFilter { """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormDataFilter + every: ApplicationGisDataFilter """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormDataFilter + some: ApplicationGisDataFilter """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormDataFilter + none: ApplicationGisDataFilter } """ -A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ """ -input FormTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `formsByFormType` relation.""" - formsByFormType: FormTypeToManyFormFilter - - """Some related `formsByFormType` exist.""" - formsByFormTypeExist: Boolean - - """Checks for all expressions in this list.""" - and: [FormTypeFilter!] +input CcbcUserToManyAnnouncementFilter { + """ + Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnnouncementFilter - """Checks for any expressions in this list.""" - or: [FormTypeFilter!] + """ + Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnnouncementFilter - """Negates the expression.""" - not: FormTypeFilter + """ + No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnnouncementFilter } """ -A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input FormTypeToManyFormFilter { +input CcbcUserToManyApplicationAnnouncementFilter { """ - Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormFilter + every: ApplicationAnnouncementFilter """ - Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormFilter + some: ApplicationAnnouncementFilter """ - No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormFilter + none: ApplicationAnnouncementFilter } """ @@ -28452,216 +27525,298 @@ input CcbcUserToManyApplicationGisAssessmentHhFilter { } """ -A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationGisAssessmentHhFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `eligible` field.""" - eligible: FloatFilter - - """Filter by the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: FloatFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationGisAssessmentHhFilter!] +input CcbcUserToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationGisAssessmentHhFilter!] + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """Negates the expression.""" - not: ApplicationGisAssessmentHhFilter + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter } """ -A filter to be used against Float fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ """ -input FloatFilter { +input CcbcUserToManySowTab2Filter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: Float - - """Not equal to the specified value.""" - notEqualTo: Float + every: SowTab2Filter """ - Not equal to the specified value, treating null like an ordinary value. + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Float - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Float - - """Included in the specified list.""" - in: [Float!] - - """Not included in the specified list.""" - notIn: [Float!] - - """Less than the specified value.""" - lessThan: Float - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Float - - """Greater than the specified value.""" - greaterThan: Float + some: SowTab2Filter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Float + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter } """ -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationGisDataFilter { +input CcbcUserToManySowTab1Filter { """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationGisDataFilter + every: SowTab1Filter """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationGisDataFilter + some: SowTab1Filter """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationGisDataFilter + none: SowTab1Filter } """ -A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationGisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyProjectInformationDataFilter { + """ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectInformationDataFilter - """Filter by the object’s `batchId` field.""" - batchId: IntFilter + """ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectInformationDataFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectInformationDataFilter +} - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """Filter by the object’s `gisDataByBatchId` relation.""" - gisDataByBatchId: GisDataFilter + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """A related `gisDataByBatchId` exists.""" - gisDataByBatchIdExists: Boolean + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityProgressReportDataFilter +} - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationGisDataFilter!] + """ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsDataFilter +} - """Checks for any expressions in this list.""" - or: [ApplicationGisDataFilter!] +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Negates the expression.""" - not: ApplicationGisDataFilter + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter + + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter } """ -A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ """ -input GisDataFilter { +input CcbcUserToManyApplicationMilestoneDataFilter { + """ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneDataFilter + + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter + + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter +} + +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter + + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter + + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} + +""" +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectFilter { + """ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectFilter + + """ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectFilter + + """ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectFilter +} + +""" +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter + """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28680,12 +27835,6 @@ input GisDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationGisDataByBatchId` relation.""" - applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter - - """Some related `applicationGisDataByBatchId` exist.""" - applicationGisDataByBatchIdExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28705,67 +27854,147 @@ input GisDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [GisDataFilter!] + and: [CbcProjectFilter!] """Checks for any expressions in this list.""" - or: [GisDataFilter!] + or: [CbcProjectFilter!] """Negates the expression.""" - not: GisDataFilter + not: CbcProjectFilter } """ -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ """ -input GisDataToManyApplicationGisDataFilter { +input CcbcUserToManyApplicationInternalDescriptionFilter { """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationGisDataFilter + every: ApplicationInternalDescriptionFilter """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationGisDataFilter + some: ApplicationInternalDescriptionFilter """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationGisDataFilter + none: ApplicationInternalDescriptionFilter } """ -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyProjectInformationDataFilter { +input CcbcUserToManyApplicationProjectTypeFilter { """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ProjectInformationDataFilter + every: ApplicationProjectTypeFilter """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ProjectInformationDataFilter + some: ApplicationProjectTypeFilter """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ProjectInformationDataFilter + none: ApplicationProjectTypeFilter } """ -A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ """ -input ProjectInformationDataFilter { +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter + + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter + + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter +} + +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter + + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter + + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} + +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + +""" +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcFilter { + """ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcFilter + + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter + + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} + +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28785,11 +28014,31 @@ input ProjectInformationDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean + + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter + + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean + + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. + """ + cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter + + """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" + cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" + cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByCbcId` exist.""" + cbcProjectCommunitiesByCbcIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28810,50 +28059,53 @@ input ProjectInformationDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ProjectInformationDataFilter!] + and: [CbcFilter!] """Checks for any expressions in this list.""" - or: [ProjectInformationDataFilter!] + or: [CbcFilter!] """Negates the expression.""" - not: ProjectInformationDataFilter + not: CbcFilter } """ -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRfiDataFilter { +input CbcToManyCbcDataFilter { """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RfiDataFilter + every: CbcDataFilter """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RfiDataFilter + some: CbcDataFilter """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RfiDataFilter + none: CbcDataFilter } """ -A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input RfiDataFilter { +input CbcDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `rfiNumber` field.""" - rfiNumber: StringFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter + + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: StringFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28873,19 +28125,26 @@ input RfiDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" - applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Some related `applicationRfiDataByRfiDataId` exist.""" - applicationRfiDataByRfiDataIdExist: Boolean + """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" + cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - """ - Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. - """ - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" + cbcDataChangeReasonsByCbcDataIdExist: Boolean - """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" - rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter + + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean + + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter + + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28906,163 +28165,48 @@ input RfiDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [RfiDataFilter!] + and: [CbcDataFilter!] """Checks for any expressions in this list.""" - or: [RfiDataFilter!] + or: [CbcDataFilter!] """Negates the expression.""" - not: RfiDataFilter + not: CbcDataFilter } """ -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input RfiDataToManyApplicationRfiDataFilter { +input CbcDataToManyCbcDataChangeReasonFilter { """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationRfiDataFilter + every: CbcDataChangeReasonFilter """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationRfiDataFilter + some: CbcDataChangeReasonFilter """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationRfiDataFilter + none: CbcDataChangeReasonFilter } """ -A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationRfiDataFilter { - """Filter by the object’s `rfiDataId` field.""" - rfiDataId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter +input CbcDataChangeReasonFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `rfiDataByRfiDataId` relation.""" - rfiDataByRfiDataId: RfiDataFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """Checks for all expressions in this list.""" - and: [ApplicationRfiDataFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationRfiDataFilter!] - - """Negates the expression.""" - not: ApplicationRfiDataFilter -} - -""" -A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `cbcDataId` field.""" + cbcDataId: IntFilter """Filter by the object’s `description` field.""" description: StringFilter - """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" - rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter - - """Some related `rfiDataByRfiDataStatusTypeId` exist.""" - rfiDataByRfiDataStatusTypeIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [RfiDataStatusTypeFilter!] - - """Checks for any expressions in this list.""" - or: [RfiDataStatusTypeFilter!] - - """Negates the expression.""" - not: RfiDataStatusTypeFilter -} - -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter - - """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RfiDataFilter - - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} - -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter - - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter - - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} - -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter - - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter - - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} - -""" -A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29081,14 +28225,8 @@ input ApplicationClaimsDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `cbcDataByCbcDataId` relation.""" + cbcDataByCbcDataId: CbcDataFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29109,47 +28247,50 @@ input ApplicationClaimsDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationClaimsDataFilter!] + and: [CbcDataChangeReasonFilter!] """Checks for any expressions in this list.""" - or: [ApplicationClaimsDataFilter!] + or: [CbcDataChangeReasonFilter!] """Negates the expression.""" - not: ApplicationClaimsDataFilter + not: CbcDataChangeReasonFilter } """ -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationClaimsExcelDataFilter { +input CbcToManyCbcApplicationPendingChangeRequestFilter { """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationClaimsExcelDataFilter + every: CbcApplicationPendingChangeRequestFilter """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationClaimsExcelDataFilter + some: CbcApplicationPendingChangeRequestFilter """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationClaimsExcelDataFilter + none: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationClaimsExcelDataFilter { +input CbcApplicationPendingChangeRequestFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29169,11 +28310,11 @@ input ApplicationClaimsExcelDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29194,47 +28335,47 @@ input ApplicationClaimsExcelDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationClaimsExcelDataFilter!] + and: [CbcApplicationPendingChangeRequestFilter!] """Checks for any expressions in this list.""" - or: [ApplicationClaimsExcelDataFilter!] + or: [CbcApplicationPendingChangeRequestFilter!] """Negates the expression.""" - not: ApplicationClaimsExcelDataFilter + not: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationCommunityProgressReportDataFilter { +input CbcToManyCbcProjectCommunityFilter { """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationCommunityProgressReportDataFilter + every: CbcProjectCommunityFilter """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationCommunityProgressReportDataFilter + some: CbcProjectCommunityFilter """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationCommunityProgressReportDataFilter + none: CbcProjectCommunityFilter } """ -A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataFilter { +input CbcProjectCommunityFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `communitiesSourceDataId` field.""" + communitiesSourceDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29254,17 +28395,19 @@ input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. + """ + communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" + communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29285,47 +28428,45 @@ input ApplicationCommunityProgressReportDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationCommunityProgressReportDataFilter!] + and: [CbcProjectCommunityFilter!] """Checks for any expressions in this list.""" - or: [ApplicationCommunityProgressReportDataFilter!] + or: [CbcProjectCommunityFilter!] """Negates the expression.""" - not: ApplicationCommunityProgressReportDataFilter + not: CbcProjectCommunityFilter } """ -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter +input CommunitiesSourceDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `geographicNameId` field.""" + geographicNameId: IntFilter - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Filter by the object’s `bcGeographicName` field.""" + bcGeographicName: StringFilter -""" -A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `geographicType` field.""" + geographicType: StringFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `regionalDistrict` field.""" + regionalDistrict: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `economicRegion` field.""" + economicRegion: StringFilter + + """Filter by the object’s `latitude` field.""" + latitude: FloatFilter + + """Filter by the object’s `longitude` field.""" + longitude: FloatFilter + + """Filter by the object’s `mapLink` field.""" + mapLink: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29345,11 +28486,13 @@ input ApplicationCommunityReportExcelDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. + """ + cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" + cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29370,135 +28513,164 @@ input ApplicationCommunityReportExcelDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationCommunityReportExcelDataFilter!] + and: [CommunitiesSourceDataFilter!] """Checks for any expressions in this list.""" - or: [ApplicationCommunityReportExcelDataFilter!] + or: [CommunitiesSourceDataFilter!] """Negates the expression.""" - not: ApplicationCommunityReportExcelDataFilter + not: CommunitiesSourceDataFilter } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationInternalDescriptionFilter { +input CommunitiesSourceDataToManyCbcProjectCommunityFilter { """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationInternalDescriptionFilter + every: CbcProjectCommunityFilter """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationInternalDescriptionFilter + some: CbcProjectCommunityFilter """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationInternalDescriptionFilter + none: CbcProjectCommunityFilter } """ -A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationInternalDescriptionFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter +""" +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { + """ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcApplicationPendingChangeRequestFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcApplicationPendingChangeRequestFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcApplicationPendingChangeRequestFilter +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +""" +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataChangeReasonFilter { + """ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataChangeReasonFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter +} - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean +""" +A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCommunitiesSourceDataFilter { + """ + Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CommunitiesSourceDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CommunitiesSourceDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CommunitiesSourceDataFilter +} - """Checks for all expressions in this list.""" - and: [ApplicationInternalDescriptionFilter!] +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """Checks for any expressions in this list.""" - or: [ApplicationInternalDescriptionFilter!] + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """Negates the expression.""" - not: ApplicationInternalDescriptionFilter + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter } """ -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneDataFilter { +input CcbcUserToManyReportingGcpeFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneDataFilter + every: ReportingGcpeFilter """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneDataFilter + some: ReportingGcpeFilter """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneDataFilter + none: ReportingGcpeFilter } """ -A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationMilestoneDataFilter { +input ReportingGcpeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `reportData` field.""" + reportData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29518,15 +28690,6 @@ input ApplicationMilestoneDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29546,3713 +28709,4590 @@ input ApplicationMilestoneDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationMilestoneDataFilter!] + and: [ReportingGcpeFilter!] """Checks for any expressions in this list.""" - or: [ApplicationMilestoneDataFilter!] + or: [ReportingGcpeFilter!] """Negates the expression.""" - not: ApplicationMilestoneDataFilter + not: ReportingGcpeFilter } """ -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneExcelDataFilter { +input CcbcUserToManyApplicationAnnouncedFilter { """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneExcelDataFilter + every: ApplicationAnnouncedFilter """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneExcelDataFilter + some: ApplicationAnnouncedFilter """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneExcelDataFilter + none: ApplicationAnnouncedFilter } """ -A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyApplicationFormTemplate9DataFilter { + """ + Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormTemplate9DataFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormTemplate9DataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneExcelDataFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneExcelDataFilter!] - - """Negates the expression.""" - not: ApplicationMilestoneExcelDataFilter + """ + No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormTemplate9DataFilter } """ -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationSowDataFilter { +input CcbcUserToManyKeycloakJwtFilter { """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationSowDataFilter + every: KeycloakJwtFilter """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationSowDataFilter + some: KeycloakJwtFilter """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationSowDataFilter + none: KeycloakJwtFilter } """ -A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter +input KeycloakJwtFilter { + """Filter by the object’s `jti` field.""" + jti: UUIDFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `exp` field.""" + exp: IntFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `nbf` field.""" + nbf: IntFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `iat` field.""" + iat: IntFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `iss` field.""" + iss: StringFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `aud` field.""" + aud: StringFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `sub` field.""" + sub: StringFilter - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Filter by the object’s `typ` field.""" + typ: StringFilter - """Filter by the object’s `isAmendment` field.""" - isAmendment: BooleanFilter + """Filter by the object’s `azp` field.""" + azp: StringFilter - """Filter by the object’s `sowTab1SBySowId` relation.""" - sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter + """Filter by the object’s `authTime` field.""" + authTime: IntFilter - """Some related `sowTab1SBySowId` exist.""" - sowTab1SBySowIdExist: Boolean + """Filter by the object’s `sessionState` field.""" + sessionState: UUIDFilter - """Filter by the object’s `sowTab2SBySowId` relation.""" - sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter + """Filter by the object’s `acr` field.""" + acr: StringFilter - """Some related `sowTab2SBySowId` exist.""" - sowTab2SBySowIdExist: Boolean + """Filter by the object’s `emailVerified` field.""" + emailVerified: BooleanFilter - """Filter by the object’s `sowTab7SBySowId` relation.""" - sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter + """Filter by the object’s `name` field.""" + name: StringFilter - """Some related `sowTab7SBySowId` exist.""" - sowTab7SBySowIdExist: Boolean + """Filter by the object’s `preferredUsername` field.""" + preferredUsername: StringFilter - """Filter by the object’s `sowTab8SBySowId` relation.""" - sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Some related `sowTab8SBySowId` exist.""" - sowTab8SBySowIdExist: Boolean + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `email` field.""" + email: StringFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `brokerSessionId` field.""" + brokerSessionId: StringFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `priorityGroup` field.""" + priorityGroup: StringFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `identityProvider` field.""" + identityProvider: StringFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `userGroups` field.""" + userGroups: StringListFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `authRole` field.""" + authRole: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `ccbcUserBySub` relation.""" + ccbcUserBySub: CcbcUserFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """A related `ccbcUserBySub` exists.""" + ccbcUserBySubExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationSowDataFilter!] + and: [KeycloakJwtFilter!] """Checks for any expressions in this list.""" - or: [ApplicationSowDataFilter!] + or: [KeycloakJwtFilter!] """Negates the expression.""" - not: ApplicationSowDataFilter + not: KeycloakJwtFilter } """ -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against String List fields. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab1Filter { +input StringListFilter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: SowTab1Filter + isNull: Boolean - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """Equal to the specified value.""" + equalTo: [String] + + """Not equal to the specified value.""" + notEqualTo: [String] """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: SowTab1Filter -} - -""" -A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab1Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + distinctFrom: [String] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [String] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than the specified value.""" + lessThan: [String] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [String] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Greater than the specified value.""" + greaterThan: [String] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [String] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Contains the specified list of values.""" + contains: [String] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contained by the specified list of values.""" + containedBy: [String] - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Overlaps the specified list of values.""" + overlaps: [String] - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Any array item is equal to the specified value.""" + anyEqualTo: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Any array item is not equal to the specified value.""" + anyNotEqualTo: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Any array item is less than the specified value.""" + anyLessThan: String - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Any array item is greater than the specified value.""" + anyGreaterThan: String - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: String +} - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean +"""A connection to a list of `Intake` values.""" +type IntakesConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! - """Checks for all expressions in this list.""" - and: [SowTab1Filter!] + """ + A list of edges which contains the `Intake` and cursor to aid in pagination. + """ + edges: [IntakesEdge!]! - """Checks for any expressions in this list.""" - or: [SowTab1Filter!] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Negates the expression.""" - not: SowTab1Filter + """The count of *all* `Intake` you could get from the connection.""" + totalCount: Int! } """ -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +Table containing intake numbers and their respective open and closing dates """ -input ApplicationSowDataToManySowTab2Filter { +type Intake implements Node { """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: SowTab2Filter + id: ID! - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Unique ID for each intake number""" + rowId: Int! - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter -} + """Open date and time for an intake number""" + openTimestamp: Datetime! -""" -A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab2Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Close date and time for an intake number""" + closeTimestamp: Datetime! - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + The name of the sequence used to generate CCBC ids. It is added via a trigger + """ + applicationNumberSeqName: String - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """archived by user id""" + archivedBy: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """A description of the intake""" + description: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """A column to denote whether the intake is visible to the public""" + hidden: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """A column to denote whether the intake is a rolling intake""" + rollingIntake: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser - """Checks for all expressions in this list.""" - and: [SowTab2Filter!] + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter - """Checks for any expressions in this list.""" - or: [SowTab2Filter!] + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: SowTab2Filter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab7Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [SowTab7Filter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [SowTab7Filter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: SowTab7Filter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab8Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! +} - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Primary key for the gapless counter""" + rowId: Int! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Primary key for the gapless counter""" + counter: Int! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [SowTab8Filter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [SowTab8Filter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: SowTab8Filter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcProjectFilter { - """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ -""" -input CbcProjectFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! +} - """Negates the expression.""" - not: CbcProjectFilter +"""Methods to use when ordering `Intake`.""" +enum IntakesOrderBy { + NATURAL + ID_ASC + ID_DESC + OPEN_TIMESTAMP_ASC + OPEN_TIMESTAMP_DESC + CLOSE_TIMESTAMP_ASC + CLOSE_TIMESTAMP_DESC + CCBC_INTAKE_NUMBER_ASC + CCBC_INTAKE_NUMBER_DESC + APPLICATION_NUMBER_SEQ_NAME_ASC + APPLICATION_NUMBER_SEQ_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + COUNTER_ID_ASC + COUNTER_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + HIDDEN_ASC + HIDDEN_DESC + HIDDEN_CODE_ASC + HIDDEN_CODE_DESC + ROLLING_INTAKE_ASC + ROLLING_INTAKE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input CcbcUserToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime + + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime + + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Checks for equality with the object’s `applicationNumberSeqName` field. """ - none: ChangeRequestDataFilter -} + applicationNumberSeqName: String -""" -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ChangeRequestDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Checks for equality with the object’s `counterId` field.""" + counterId: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Checks for equality with the object’s `description` field.""" + description: String - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Checks for equality with the object’s `hidden` field.""" + hidden: Boolean - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Checks for equality with the object’s `hiddenCode` field.""" + hiddenCode: UUID - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Checks for equality with the object’s `rollingIntake` field.""" + rollingIntake: Boolean +} - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ChangeRequestDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! } -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - some: NotificationFilter + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -""" -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input NotificationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `notificationType` field.""" - notificationType: StringFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: Boolean +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [NotificationFilter!] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [NotificationFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Negates the expression.""" - not: NotificationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! } -""" -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Filter by the object’s `toEmail` field.""" - toEmail: StringFilter + """ + A list of edges which contains the `Application` and cursor to aid in pagination. + """ + edges: [ApplicationsEdge!]! - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `subject` field.""" - subject: StringFilter + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `body` field.""" - body: StringFilter +""" +Table containing the data associated with the CCBC respondents application +""" +type Application implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """Primary key ID for the application""" + rowId: Int! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Reference number assigned to the application""" + ccbcNumber: String - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The owner of the application, identified by its JWT sub""" + owner: String! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The intake associated with the application, set when it is submitted""" + intakeId: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter + """archived by user id""" + archivedBy: Int - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Program type of the project""" + program: String! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: EmailRecordFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPackageFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `package` field.""" - package: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationPackageFilter -} + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter -} + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationProjectTypeFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCcbcUserFilter { - """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CcbcUserFilter -} + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - none: AttachmentFilter -} + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `file` field.""" - file: UUIDFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `fileName` field.""" - fileName: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `fileType` field.""" - fileType: StringFilter + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter - - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: AttachmentFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `status` field.""" - status: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectInformationDataCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationStatusFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Negates the expression.""" - not: ApplicationStatusTypeFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - every: ApplicationStatusFilter + applicationCommunityReportExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyGisDataFilter { - """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: GisDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: GisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: GisDataFilter -} + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnalystFilter { - """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnalystFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityReportExcelDataCondition - """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnalystFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnalystFilter -} + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `active` field.""" - active: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `email` field.""" - email: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsExcelDataCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [AnalystFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [AnalystFilter!] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: AnalystFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneDataCondition -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - some: ApplicationAnalystLeadFilter + applicationMilestoneExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationInternalDescriptionCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationProjectTypeCondition - """Negates the expression.""" - not: ApplicationAnalystLeadFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - none: ApplicationStatusFilter -} + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyRecordVersionFilter { - """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RecordVersionFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RecordVersionFilter + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RecordVersionFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition -""" -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input RecordVersionFilter { - """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `op` field.""" - op: OperationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Reads and enables pagination through a set of `ApplicationFormTemplate9Data`. + """ + applicationFormTemplate9DataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `record` field.""" - record: JSONFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [RecordVersionFilter!] + """The method to use when ordering `ApplicationFormTemplate9Data`.""" + orderBy: [ApplicationFormTemplate9DataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormTemplate9DataCondition - """Negates the expression.""" - not: RecordVersionFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormTemplate9DataFilter + ): ApplicationFormTemplate9DataConnection! -""" -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ -""" -input BigIntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: BigInt + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( + """Only read the first `n` values of the set.""" + first: Int - """Not equal to the specified value.""" - notEqualTo: BigInt + """Only read the last `n` values of the set.""" + last: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigInt + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Included in the specified list.""" - in: [BigInt!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not included in the specified list.""" - notIn: [BigInt!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Less than the specified value.""" - lessThan: BigInt + """ + computed column to return space separated list of amendment numbers for a change request + """ + amendmentNumbers: String - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt + """Computed column to return analyst lead of an application""" + analystLead: String - """Greater than the specified value.""" - greaterThan: BigInt + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + announced: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt -} + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int -""" -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ -""" -input OperationFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value.""" - equalTo: Operation + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not equal to the specified value.""" - notEqualTo: Operation + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Operation + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Included in the specified list.""" - in: [Operation!] + """Computed column to get assessment notifications by assessment type""" + assessmentNotifications( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [Operation!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: Operation + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: Operation + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE -} + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData -""" -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ -""" -input BigFloatFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Computed column to return external status of an application""" + externalStatus: String - """Equal to the specified value.""" - equalTo: BigFloat + """Computed column to display form_data""" + formData: FormData - """Not equal to the specified value.""" - notEqualTo: BigFloat + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigFloat + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean - """Included in the specified list.""" - in: [BigFloat!] + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [BigFloat!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: BigFloat + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: BigFloat + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String -""" -A floating point number that requires more precision than IEEE 754 binary 64 -""" -scalar BigFloat + """Computed column to display organization name from json data""" + organizationName: String -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab1Filter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Computed column to return the application announced status for an application """ - every: SowTab1Filter + package: Int - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """Computed column to return project information data""" + projectInformation: ProjectInformationData - """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab1Filter -} + """Computed column to display the project name""" + projectName: String -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter + """Computed column to return last RFI for an application""" + rfi: RfiData - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Computed column to return status of an application""" + status: String - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter -} + """Computed column to return the order of the status""" + statusOrder: Int -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab7Filter { """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Computed column to return the status order with the status name appended for sorting and filtering """ - every: SowTab7Filter + statusSortFilter: String + zone: Int """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Computed column to get single lowest zone from json data, used for sorting """ - some: SowTab7Filter + zones: [Int] - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter -} + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition -""" -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `comment` field.""" - comment: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcFilter { - """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ -""" -input CbcFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. - """ - cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" - cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" - cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcProjectCommunitiesByCbcId` exist.""" - cbcProjectCommunitiesByCbcIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [CbcFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [CbcFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! - """Negates the expression.""" - not: CbcFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CbcToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CbcDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! - """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" - cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" - cbcDataChangeReasonsByCbcDataIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: CbcDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CbcDataToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataChangeReasonFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CbcDataChangeReasonFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `cbcDataId` field.""" - cbcDataId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `cbcDataByCbcDataId` relation.""" - cbcDataByCbcDataId: CbcDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [CbcDataChangeReasonFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [CbcDataChangeReasonFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: CbcDataChangeReasonFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! -""" -A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [CbcApplicationPendingChangeRequestFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [CbcApplicationPendingChangeRequestFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: CbcApplicationPendingChangeRequestFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CbcToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CbcProjectCommunityFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `communitiesSourceDataId` field.""" - communitiesSourceDataId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. - """ - communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" - communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [CbcProjectCommunityFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [CbcProjectCommunityFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: CbcProjectCommunityFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ -""" -input CommunitiesSourceDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `geographicNameId` field.""" - geographicNameId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `bcGeographicName` field.""" - bcGeographicName: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `geographicType` field.""" - geographicType: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `regionalDistrict` field.""" - regionalDistrict: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `economicRegion` field.""" - economicRegion: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `latitude` field.""" - latitude: FloatFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `longitude` field.""" - longitude: FloatFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `mapLink` field.""" - mapLink: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. - """ - cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" - cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [CommunitiesSourceDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [CommunitiesSourceDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: CommunitiesSourceDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CommunitiesSourceDataToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataChangeReasonFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCommunitiesSourceDataFilter { - """ - Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CommunitiesSourceDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CommunitiesSourceDataFilter + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CommunitiesSourceDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GisDataCondition -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyReportingGcpeFilter { - """ - Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ReportingGcpeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ReportingGcpeFilter - - """ - No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ReportingGcpeFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ -""" -input ReportingGcpeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `reportData` field.""" - reportData: JSONFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ReportingGcpeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ReportingGcpeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ReportingGcpeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnnouncedFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncedFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncedFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationAnnouncedFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationFormTemplate9DataFilter { - """ - Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormTemplate9DataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormTemplate9DataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormTemplate9DataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormTemplate9DataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `errors` field.""" - errors: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `source` field.""" - source: JSONFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ApplicationFormTemplate9DataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ApplicationFormTemplate9DataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ApplicationFormTemplate9DataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyKeycloakJwtFilter { - """ - Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: KeycloakJwtFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: KeycloakJwtFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: KeycloakJwtFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ -""" -input KeycloakJwtFilter { - """Filter by the object’s `jti` field.""" - jti: UUIDFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `exp` field.""" - exp: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `nbf` field.""" - nbf: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `iat` field.""" - iat: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `iss` field.""" - iss: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `aud` field.""" - aud: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sub` field.""" - sub: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `typ` field.""" - typ: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `azp` field.""" - azp: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `authTime` field.""" - authTime: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `sessionState` field.""" - sessionState: UUIDFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `acr` field.""" - acr: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `emailVerified` field.""" - emailVerified: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `name` field.""" - name: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `preferredUsername` field.""" - preferredUsername: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `email` field.""" - email: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `brokerSessionId` field.""" - brokerSessionId: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `priorityGroup` field.""" - priorityGroup: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `identityProvider` field.""" - identityProvider: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `userGroups` field.""" - userGroups: StringListFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `authRole` field.""" - authRole: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserBySub` relation.""" - ccbcUserBySub: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserBySub` exists.""" - ccbcUserBySubExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [KeycloakJwtFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [KeycloakJwtFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: KeycloakJwtFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against String List fields. All fields are combined with a logical ‘and.’ -""" -input StringListFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Equal to the specified value.""" - equalTo: [String] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not equal to the specified value.""" - notEqualTo: [String] + """Only read the last `n` values of the set.""" + last: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: [String] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [String] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than the specified value.""" - lessThan: [String] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [String] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than the specified value.""" - greaterThan: [String] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [String] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Contains the specified list of values.""" - contains: [String] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contained by the specified list of values.""" - containedBy: [String] + """Only read the last `n` values of the set.""" + last: Int - """Overlaps the specified list of values.""" - overlaps: [String] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Any array item is equal to the specified value.""" - anyEqualTo: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Any array item is not equal to the specified value.""" - anyNotEqualTo: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Any array item is less than the specified value.""" - anyLessThan: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Any array item is greater than the specified value.""" - anyGreaterThan: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: String -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisAssessmentHhFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyProjectInformationDataFilter { - """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectInformationDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectInformationDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectInformationDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsExcelDataFilter { - """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsExcelDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsExcelDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsExcelDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityProgressReportDataFilter { - """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityProgressReportDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityProgressReportDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityProgressReportDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationInternalDescriptionFilter { - """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationInternalDescriptionFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationInternalDescriptionFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationInternalDescriptionFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneDataFilter { - """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneExcelDataFilter { - """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneExcelDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationFormTemplate9Data` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormTemplate9DataFilter { - """ - Every related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormTemplate9DataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormTemplate9DataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationFormTemplate9Data` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormTemplate9DataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `counter` field.""" - counter: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `intakesByCounterId` relation.""" - intakesByCounterId: GaplessCounterToManyIntakeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `intakesByCounterId` exist.""" - intakesByCounterIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [GaplessCounterFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [GaplessCounterFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: GaplessCounterFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33271,121 +33311,90 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `CcbcUser`.""" -enum CcbcUsersOrderBy { - NATURAL - ID_ASC - ID_DESC - SESSION_SUB_ASC - SESSION_SUB_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - EMAIL_ADDRESS_ASC - EMAIL_ADDRESS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXTERNAL_ANALYST_ASC - EXTERNAL_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CcbcUser` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CcbcUserCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `sessionSub` field.""" - sessionSub: String + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `externalAnalyst` field.""" - externalAnalyst: Boolean -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33404,48 +33413,56 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndCreatedByManyToManyConnection! -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33464,136 +33481,98 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationFormTemplate9DataApplicationIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Application`.""" -enum ApplicationsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBER_ASC - CCBC_NUMBER_DESC - OWNER_ASC - OWNER_DESC - INTAKE_ID_ASC - INTAKE_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PROGRAM_ASC - PROGRAM_DESC - ANALYST_LEAD_ASC - ANALYST_LEAD_DESC - INTAKE_NUMBER_ASC - INTAKE_NUMBER_DESC - ORGANIZATION_NAME_ASC - ORGANIZATION_NAME_DESC - PACKAGE_ASC - PACKAGE_DESC - PROJECT_NAME_ASC - PROJECT_NAME_DESC - STATUS_ASC - STATUS_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - STATUS_SORT_FILTER_ASC - STATUS_SORT_FILTER_DESC - ZONE_ASC - ZONE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! + + """ + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + """ + edges: [ApplicationStatusesEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ + totalCount: Int! } -""" -A condition to be used against `Application` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input ApplicationCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +"""Table containing information about possible application statuses""" +type ApplicationStatus implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Checks for equality with the object’s `ccbcNumber` field.""" - ccbcNumber: String + """Unique ID for the application_status""" + rowId: Int! - """Checks for equality with the object’s `owner` field.""" - owner: String + """ID of the application this status belongs to""" + applicationId: Int - """Checks for equality with the object’s `intakeId` field.""" - intakeId: Int + """The status of the application""" + status: String - """Checks for equality with the object’s `createdBy` field.""" + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Change reason for analyst status change""" + changeReason: String - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime - """Checks for equality with the object’s `program` field.""" - program: String -} + """updated by user id""" + updatedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """updated at timestamp""" + updatedAt: Datetime! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationStatus`. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + """ + applicationStatusTypeByStatus: ApplicationStatusType - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByCreatedBy: CcbcUser -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByArchivedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByUpdatedBy: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -33612,50 +33591,22 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. - """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: AttachmentFilter + ): AttachmentsConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + applicationsByAttachmentApplicationStatusIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33686,38 +33637,10 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): ApplicationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. - """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33736,105 +33659,119 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! -} - -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! - """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. - """ - edges: [AssessmentDataEdge!]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Only read the last `n` values of the set.""" + last: Int - """The count of *all* `AssessmentData` you could get from the connection.""" - totalCount: Int! -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -type AssessmentData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - applicationId: Int! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) - """ - jsonData: JSON! - assessmentDataType: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """created by user id""" - createdBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """created at timestamp""" - createdAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """updated by user id""" - updatedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! - """updated at timestamp""" - updatedAt: Datetime! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """archived by user id""" - archivedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """archived at timestamp""" - archivedAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! } """ -Table containing the different assessment types that can be assigned to an assessment +Table containing the different statuses that can be assigned to an application """ -type AssessmentType implements Node { +type ApplicationStatusType implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Name of and primary key of the type of an assessment""" + """Name of and primary key of the status of an application""" name: String! - """Description of the assessment type""" + """Description of the status type""" description: String - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + """ + visibleByApplicant: Boolean + + """The logical order in which the status should be displayed.""" + statusOrder: Int! + + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. + """ + visibleByAnalyst: Boolean + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -33853,22 +33790,22 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( + applicationsByApplicationStatusStatusAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33899,10 +33836,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + ccbcUsersByApplicationStatusStatusAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33933,10 +33870,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( + ccbcUsersByApplicationStatusStatusAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33967,10 +33904,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + ccbcUsersByApplicationStatusStatusAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34001,52 +33938,49 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! } -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC + STATUS_ASC + STATUS_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC + CHANGE_REASON_ASC + CHANGE_REASON_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `AssessmentData` object types. All fields are +A condition to be used against `ApplicationStatus` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input AssessmentDataCondition { +input ApplicationStatusCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `assessmentDataType` field.""" - assessmentDataType: String + """Checks for equality with the object’s `status` field.""" + status: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34054,30 +33988,33 @@ input AssessmentDataCondition { """Checks for equality with the object’s `createdAt` field.""" createdAt: Datetime - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `changeReason` field.""" + changeReason: String """Checks for equality with the object’s `archivedBy` field.""" archivedBy: Int """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34087,17 +34024,17 @@ type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationI } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34116,32 +34053,118 @@ type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +"""Methods to use when ordering `Application`.""" +enum ApplicationsOrderBy { + NATURAL + ID_ASC + ID_DESC + CCBC_NUMBER_ASC + CCBC_NUMBER_DESC + OWNER_ASC + OWNER_DESC + INTAKE_ID_ASC + INTAKE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PROGRAM_ASC + PROGRAM_DESC + ANALYST_LEAD_ASC + ANALYST_LEAD_DESC + INTAKE_NUMBER_ASC + INTAKE_NUMBER_DESC + ORGANIZATION_NAME_ASC + ORGANIZATION_NAME_DESC + PACKAGE_ASC + PACKAGE_DESC + PROJECT_NAME_ASC + PROJECT_NAME_DESC + STATUS_ASC + STATUS_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + STATUS_SORT_FILTER_ASC + STATUS_SORT_FILTER_DESC + ZONE_ASC + ZONE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A condition to be used against `Application` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { +input ApplicationCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `ccbcNumber` field.""" + ccbcNumber: String + + """Checks for equality with the object’s `owner` field.""" + owner: String + + """Checks for equality with the object’s `intakeId` field.""" + intakeId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `program` field.""" + program: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34150,16 +34173,18 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34178,32 +34203,32 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34212,16 +34237,18 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34240,32 +34267,32 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34274,16 +34301,18 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34302,66 +34331,74 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! +"""A connection to a list of `Attachment` values.""" +type AttachmentsConnection { + """A list of `Attachment` objects.""" + nodes: [Attachment]! """ - A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + A list of edges which contains the `Attachment` and cursor to aid in pagination. """ - edges: [ConditionalApprovalDataEdge!]! + edges: [AttachmentsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ConditionalApprovalData` you could get from the connection. - """ + """The count of *all* `Attachment` you could get from the connection.""" totalCount: Int! } -"""Table to store conditional approval data""" -type ConditionalApprovalData implements Node { +"""Table containing information about uploaded attachments""" +type Attachment implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" + """Unique ID for the attachment""" rowId: Int! - """The foreign key of an application""" - applicationId: Int + """ + Universally Unique ID for the attachment, created by the fastapi storage micro-service + """ + file: UUID + + """Description of the attachment""" + description: String + + """Original uploaded file name""" + fileName: String + + """Original uploaded file type""" + fileType: String + + """Original uploaded file size""" + fileSize: String """ - The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) + The id of the project (ccbc_public.application.id) that the attachment was uploaded to """ - jsonData: JSON! + applicationId: Int! + + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: Int """created by user id""" createdBy: Int @@ -34381,45 +34418,52 @@ type ConditionalApprovalData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `Application` that is related to this `Attachment`.""" applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + Reads a single `ApplicationStatus` that is related to this `Attachment`. """ + applicationStatusByApplicationStatusId: ApplicationStatus + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { +"""A `Attachment` edge in the connection.""" +type AttachmentsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData + """The `Attachment` at the end of the edge.""" + node: Attachment } -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { +"""Methods to use when ordering `Attachment`.""" +enum AttachmentsOrderBy { NATURAL ID_ASC ID_DESC + FILE_ASC + FILE_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FILE_NAME_ASC + FILE_NAME_DESC + FILE_TYPE_ASC + FILE_TYPE_DESC + FILE_SIZE_ASC + FILE_SIZE_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_STATUS_ID_ASC + APPLICATION_STATUS_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -34437,18 +34481,33 @@ enum ConditionalApprovalDataOrderBy { } """ -A condition to be used against `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ConditionalApprovalDataCondition { +input AttachmentCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `file` field.""" + file: UUID + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `fileName` field.""" + fileName: String + + """Checks for equality with the object’s `fileType` field.""" + fileType: String + + """Checks for equality with the object’s `fileSize` field.""" + fileSize: String + """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `applicationStatusId` field.""" + applicationStatusId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34469,245 +34528,327 @@ input ConditionalApprovalDataCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +"""A `Application` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationGisAssessmentHhsEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: Int! +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The application_id of the application this record is associated with""" - applicationId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """The number of eligible households""" - eligible: Float + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The number of eligible indigenous households""" - eligibleIndigenous: Float + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh -} - -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -""" -A condition to be used against `ApplicationGisAssessmentHh` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationGisAssessmentHhCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `eligible` field.""" - eligible: Float + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus } -"""A connection to a list of `ApplicationGisData` values.""" -type ApplicationGisDataConnection { - """A list of `ApplicationGisData` objects.""" - nodes: [ApplicationGisData]! +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! """ - A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. """ - edges: [ApplicationGisDataEdge!]! + edges: [ApplicationFormDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationGisData` you could get from the connection. + The count of *all* `ApplicationFormData` you could get from the connection. """ totalCount: Int! } -type ApplicationGisData implements Node { +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - rowId: Int! - batchId: Int - applicationId: Int - - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" - gisDataByBatchId: GisData - - """ - Reads a single `Application` that is related to this `ApplicationGisData`. - """ - applicationByApplicationId: Application + """The foreign key of a form""" + formDataId: Int! - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ - ccbcUserByCreatedBy: CcbcUser + """The foreign key of an application""" + applicationId: Int! """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + Reads a single `FormData` that is related to this `ApplicationFormData`. """ - ccbcUserByUpdatedBy: CcbcUser + formDataByFormDataId: FormData """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + Reads a single `Application` that is related to this `ApplicationFormData`. """ - ccbcUserByArchivedBy: CcbcUser + applicationByApplicationId: Application } -"""Table containing the uploaded GIS data in JSON format""" -type GisData implements Node { +"""Table to hold applicant form data""" +type FormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier""" + """The unique id of the form data""" rowId: Int! """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) """ jsonData: JSON! + """Column saving the key of the last edited form page""" + lastEditedPage: String + + """Column referencing the form data status type, defaults to draft""" + formDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -34726,17 +34867,31 @@ type GisData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Schema for the respective form_data""" + formSchemaId: Int + + """Column to track analysts reason for changing form data""" + reasonForChange: String + + """ + Reads a single `FormDataStatusType` that is related to this `FormData`. + """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form + + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( """Only read the first `n` values of the set.""" first: Int @@ -34755,22 +34910,25 @@ type GisData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationFormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! + + """computed column to display whether form_data is editable or not""" + isEditable: Boolean """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( + applicationsByApplicationFormDataFormDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34801,10 +34959,58 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! +} + +"""The statuses applicable to a form""" +type FormDataStatusType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The name of the status type""" + name: String! + + """The description of the status type""" + description: String + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34835,10 +35041,10 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34869,10 +35075,10 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34903,20 +35109,80 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! } -"""Methods to use when ordering `ApplicationGisData`.""" -enum ApplicationGisDataOrderBy { +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! + + """ + A list of edges which contains the `FormData` and cursor to aid in pagination. + """ + edges: [FormDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! +} + +"""A `FormData` edge in the connection.""" +type FormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `FormData` at the end of the edge.""" + node: FormData +} + +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { NATURAL ID_ASC ID_DESC - BATCH_ID_ASC - BATCH_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC + LAST_EDITED_PAGE_ASC + LAST_EDITED_PAGE_DESC + FORM_DATA_STATUS_TYPE_ID_ASC + FORM_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -34929,121 +35195,67 @@ enum ApplicationGisDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + FORM_SCHEMA_ID_ASC + FORM_SCHEMA_ID_DESC + REASON_FOR_CHANGE_ASC + REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationGisData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationGisDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `batchId` field.""" - batchId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. - """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +input FormDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The `Application` at the end of the edge.""" - node: Application + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `lastEditedPage` field.""" + lastEditedPage: String - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `formSchemaId` field.""" + formSchemaId: Int + + """Checks for equality with the object’s `reasonForChange` field.""" + reasonForChange: String } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35052,18 +35264,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35082,32 +35292,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35116,18 +35326,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35146,32 +35354,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35180,18 +35388,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -35210,957 +35416,759 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""A `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ProjectInformationDataEdge!]! + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ProjectInformationData` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""Table to store project information data""" -type ProjectInformationData implements Node { +"""Table to hold the json_schema for forms""" +type Form implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" + """Primary key on form""" rowId: Int! - """The foreign key of an application""" - applicationId: Int - - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ProjectInformationData`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData -} - -"""Methods to use when ordering `ProjectInformationData`.""" -enum ProjectInformationDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """The end url for the form data""" + slug: String - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """The JSON schema for the respective form""" + jsonSchema: JSON! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Description of the form""" + description: String - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The type of form being stored""" + formType: String - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. - """ - edges: [ApplicationClaimsDataEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `ApplicationClaimsData` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""Table containing the claims data for the given application""" -type ApplicationClaimsData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Unique id for the claims""" - rowId: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! - """Id of the application the claims belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """The claims form json data""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated by user id""" - updatedBy: Int + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """updated at timestamp""" - updatedAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition - """archived by user id""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! - """archived at timestamp""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! -"""Methods to use when ordering `ApplicationClaimsData`.""" -enum ApplicationClaimsDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A condition to be used against `ApplicationClaimsData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationClaimsDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A connection to a list of `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. - """ - edges: [ApplicationClaimsExcelDataEdge!]! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - The count of *all* `ApplicationClaimsExcelData` you could get from the connection. - """ - totalCount: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! } -"""Table containing the claims excel data for the given application""" -type ApplicationClaimsExcelData implements Node { +"""Table containing the different types of forms used in the application""" +type FormType implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the claims excel data""" - rowId: Int! + """Primary key and unique identifier of the type of form""" + name: String! - """ID of the application this data belongs to""" - applicationId: Int + """Description of the type of form""" + description: String - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """ - Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormsConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + A list of edges which contains the `Form` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [FormsEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationClaimsExcelData` edge in the connection.""" -type ApplicationClaimsExcelDataEdge { +"""A `Form` edge in the connection.""" +type FormsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData + """The `Form` at the end of the edge.""" + node: Form } -"""Methods to use when ordering `ApplicationClaimsExcelData`.""" -enum ApplicationClaimsExcelDataOrderBy { +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + SLUG_ASC + SLUG_DESC + JSON_SCHEMA_ASC + JSON_SCHEMA_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FORM_TYPE_ASC + FORM_TYPE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationClaimsExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationClaimsExcelDataCondition { +input FormCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Checks for equality with the object’s `slug` field.""" + slug: String - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `description` field.""" + description: String - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `formType` field.""" + formType: String } """ -A connection to a list of `ApplicationCommunityProgressReportData` values. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityProgressReportDataEdge!]! + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -Table containing the Community Progress Report data for the given application +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type ApplicationCommunityProgressReportData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the Community Progress Report""" - rowId: Int! - - """ID of the application this Community Progress Report belongs to""" - applicationId: Int - - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """History operation""" - historyOperation: String + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" -enum ApplicationCommunityProgressReportDataOrderBy { +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationCommunityProgressReportData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `description` field.""" + description: String } """ -A connection to a list of `ApplicationCommunityReportExcelData` values. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -Table containing the Community Report excel data for the given application -""" -type ApplicationCommunityReportExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the Community Report excel data""" - rowId: Int! - - """ID of the application this Community Report belongs to""" - applicationId: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. - """ - applicationByApplicationId: Application + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData -} + """Information to aid in pagination.""" + pageInfo: PageInfo! -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -""" -A condition to be used against `ApplicationCommunityReportExcelData` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationInternalDescription` values.""" -type ApplicationInternalDescriptionsConnection { - """A list of `ApplicationInternalDescription` objects.""" - nodes: [ApplicationInternalDescription]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationInternalDescription` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the internal description for the given application""" -type ApplicationInternalDescription implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique id for the row""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Id of the application the description belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The internal description for the given application""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByCreatedBy: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Only read the last `n` values of the set.""" + last: Int -"""A `ApplicationInternalDescription` edge in the connection.""" -type ApplicationInternalDescriptionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { NATURAL - ID_ASC - ID_DESC + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationFormData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `description` field.""" - description: String +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData } -"""A connection to a list of `ApplicationMilestoneData` values.""" -type ApplicationMilestoneDataConnection { - """A list of `ApplicationMilestoneData` objects.""" - nodes: [ApplicationMilestoneData]! +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! """ - A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. """ - edges: [ApplicationMilestoneDataEdge!]! + edges: [ApplicationAnalystLeadsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationMilestoneData` you could get from the connection. + The count of *all* `ApplicationAnalystLead` you could get from the connection. """ totalCount: Int! } -"""Table containing the milestone data for the given application""" -type ApplicationMilestoneData implements Node { +"""Table containing the analyst lead for the given application""" +type ApplicationAnalystLead implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the milestone""" + """Unique ID for the application_analyst_lead""" rowId: Int! - """Id of the application the milestone belongs to""" + """ID of the application this analyst lead belongs to""" applicationId: Int - """The milestone form json data""" - jsonData: JSON! - - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ID of the analyst this analyst lead belongs to""" + analystId: Int """created by user id""" createdBy: Int @@ -36180,50 +36188,50 @@ type ApplicationMilestoneData implements Node { """archived at timestamp""" archivedAt: Datetime - """History operation""" - historyOperation: String - """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. + Reads a single `Application` that is related to this `ApplicationAnalystLead`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + """ + analystByAnalystId: Analyst + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead } -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { +"""Methods to use when ordering `ApplicationAnalystLead`.""" +enum ApplicationAnalystLeadsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC + ANALYST_ID_ASC + ANALYST_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -36236,28 +36244,23 @@ enum ApplicationMilestoneDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnalystLead` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneDataCondition { +input ApplicationAnalystLeadCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Checks for equality with the object’s `analystId` field.""" + analystId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -36276,46 +36279,70 @@ input ApplicationMilestoneDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String } -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! +"""A connection to a list of `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [ApplicationMilestoneExcelDataEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. + The count of *all* `ApplicationRfiData` you could get from the connection. """ totalCount: Int! } -"""Table containing the milestone excel data for the given application""" -type ApplicationMilestoneExcelData implements Node { +"""Table to pair an application to RFI data""" +type ApplicationRfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the milestone excel data""" + """The foreign key of a form""" + rfiDataId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + rfiDataByRfiDataId: RfiData + + """ + Reads a single `Application` that is related to this `ApplicationRfiData`. + """ + applicationByApplicationId: Application +} + +"""Table to hold RFI form data""" +type RfiData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the form data""" rowId: Int! - """ID of the application this data belongs to""" - applicationId: Int + """Reference number assigned to the RFI""" + rfiNumber: String - """The data imported from the excel filled by the respondent""" + """ + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + """ jsonData: JSON! + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -36334,177 +36361,128 @@ type ApplicationMilestoneExcelData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. - """ - applicationByApplicationId: Application + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData -} - -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} -""" -A condition to be used against `ApplicationMilestoneExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationMilestoneExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -"""A connection to a list of `ApplicationSowData` values.""" -type ApplicationSowDataConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. - """ - edges: [ApplicationSowDataEdge!]! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ - totalCount: Int! -} + """Computed column to return all attachement rows for an rfi_data row""" + attachments( + """Only read the first `n` values of the set.""" + first: Int -"""Table containing the SoW data for the given application""" -type ApplicationSowData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """Only read the last `n` values of the set.""" + last: Int - """Unique ID for the SoW""" - rowId: Int! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ID of the application this SoW belongs to""" - applicationId: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) - """ - jsonData: JSON! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """created by user id""" - createdBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! - """created at timestamp""" - createdAt: Datetime! + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """updated by user id""" - updatedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """updated at timestamp""" - updatedAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived by user id""" - archivedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The amendment number""" - amendmentNumber: Int + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Column identifying if the record is an amendment""" - isAmendment: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """ - Reads a single `Application` that is related to this `ApplicationSowData`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! +} +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - ccbcUserByCreatedBy: CcbcUser + id: ID! - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """The name of the status type""" + name: String! - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The description of the status type""" + description: String - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -36523,22 +36501,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: RfiDataFilter + ): RfiDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36557,22 +36535,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36591,22 +36569,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36625,22 +36603,136 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData` and cursor to aid in pagination. + """ + edges: [RfiDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +"""A `RfiData` edge in the connection.""" +type RfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +"""Methods to use when ordering `RfiData`.""" +enum RfiDataOrderBy { + NATURAL + ID_ASC + ID_DESC + RFI_NUMBER_ASC + RFI_NUMBER_DESC + JSON_DATA_ASC + JSON_DATA_DESC + RFI_DATA_STATUS_TYPE_ID_ASC + RFI_DATA_STATUS_TYPE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input RfiDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36659,22 +36751,48 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36693,22 +36811,48 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36727,22 +36871,167 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! +} + +"""Methods to use when ordering `ApplicationRfiData`.""" +enum ApplicationRfiDataOrderBy { + NATURAL + RFI_DATA_ID_ASC + RFI_DATA_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationRfiData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationRfiDataCondition { + """Checks for equality with the object’s `rfiDataId` field.""" + rfiDataId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int +} + +""" +A connection to a list of `Application` values, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application +} + +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData +} + +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! + + """ + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + """ + edges: [AssessmentDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentData` you could get from the connection.""" + totalCount: Int! +} + +type AssessmentData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + applicationId: Int! + + """ + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + """ + jsonData: JSON! + assessmentDataType: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `Application` that is related to this `AssessmentData`.""" + applicationByApplicationId: Application + + """ + Reads a single `AssessmentType` that is related to this `AssessmentData`. + """ + assessmentTypeByAssessmentDataType: AssessmentType + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByArchivedBy: CcbcUser +} + +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Name of and primary key of the type of an assessment""" + name: String! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! + """Description of the assessment type""" + description: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -36761,22 +37050,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -36795,22 +37084,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36841,10 +37130,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36875,10 +37164,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36909,78 +37198,103 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ASSESSMENT_DATA_TYPE_ASC + ASSESSMENT_DATA_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input AssessmentDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `assessmentDataType` field.""" + assessmentDataType: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -36999,22 +37313,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37033,309 +37375,188 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `SowTab1` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [SowTab1SEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab1` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -type SowTab1 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - sowId: Int - - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab1` at the end of the edge.""" - node: SowTab1 -} - -"""Methods to use when ordering `SowTab1`.""" -enum SowTab1SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab1Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [SowTab2SEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab2` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab2 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the SoW detailed budget record""" - rowId: Int! - - """ID of the SoW""" - sowId: Int - - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab2` at the end of the edge.""" - node: SowTab2 -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab2Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `AssessmentData` edge in the connection.""" +type AssessmentDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `AssessmentData` at the end of the edge.""" + node: AssessmentData } -"""A connection to a list of `SowTab7` values.""" -type SowTab7SConnection { - """A list of `SowTab7` objects.""" - nodes: [SowTab7]! +"""A connection to a list of `ApplicationPackage` values.""" +type ApplicationPackagesConnection { + """A list of `ApplicationPackage` objects.""" + nodes: [ApplicationPackage]! """ - A list of edges which contains the `SowTab7` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [SowTab7SEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab7` you could get from the connection.""" + """ + The count of *all* `ApplicationPackage` you could get from the connection. + """ totalCount: Int! } -type SowTab7 implements Node { +"""Table containing the package the application is assigned to""" +type ApplicationPackage implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + + """Unique ID for the application_package""" rowId: Int! - sowId: Int - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) - """ - jsonData: JSON! + """The application_id of the application this record is associated with""" + applicationId: Int + + """The package number the application is assigned to""" + package: Int """created by user id""" createdBy: Int @@ -37355,37 +37576,45 @@ type SowTab7 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationPackage`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { +"""A `ApplicationPackage` edge in the connection.""" +type ApplicationPackagesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab7` at the end of the edge.""" - node: SowTab7 + """The `ApplicationPackage` at the end of the edge.""" + node: ApplicationPackage } -"""Methods to use when ordering `SowTab7`.""" -enum SowTab7SOrderBy { +"""Methods to use when ordering `ApplicationPackage`.""" +enum ApplicationPackagesOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PACKAGE_ASC + PACKAGE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -37403,17 +37632,18 @@ enum SowTab7SOrderBy { } """ -A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationPackage` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input SowTab7Condition { +input ApplicationPackageCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `package` field.""" + package: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -37434,38 +37664,40 @@ input SowTab7Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +"""A connection to a list of `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! """ - A list of edges which contains the `SowTab8` and cursor to aid in pagination. + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. """ - edges: [SowTab8SEdge!]! + edges: [ConditionalApprovalDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """ + The count of *all* `ConditionalApprovalData` you could get from the connection. + """ totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab8 implements Node { +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW Tab 8""" + """Unique id for the row""" rowId: Int! - """ID of the SoW""" - sowId: Int + """The foreign key of an application""" + applicationId: Int """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) """ jsonData: JSON! @@ -37487,35 +37719,43 @@ type SowTab8 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ConditionalApprovalData`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab8` at the end of the edge.""" - node: SowTab8 + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData } -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -37535,14 +37775,15 @@ enum SowTab8SOrderBy { } """ -A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab8Condition { +input ConditionalApprovalDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -37566,273 +37807,125 @@ input SowTab8Condition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationGisDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + The count of *all* `ApplicationGisData` you could get from the connection. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +type ApplicationGisData implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + id: ID! + rowId: Int! + batchId: Int + applicationId: Int - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + """ + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """created by user id""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated by user id""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """archived by user id""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition + """archived at timestamp""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! -} + """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + gisDataByBatchId: GisData -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationGisData`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Table containing the uploaded GIS data in JSON format""" +type GisData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Primary key and unique identifier""" + rowId: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + """ + jsonData: JSON! - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab2Condition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! -} + """updated by user id""" + updatedBy: Int -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """updated at timestamp""" + updatedAt: Datetime! - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! + """archived by user id""" + archivedBy: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """archived at timestamp""" + archivedAt: Datetime - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByCreatedBy: CcbcUser -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByUpdatedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -37851,48 +37944,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataBatchIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -37911,48 +37978,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationFilter + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37971,48 +38012,22 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38031,48 +38046,22 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38091,48 +38080,115 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""Methods to use when ordering `ApplicationGisData`.""" +enum ApplicationGisDataOrderBy { + NATURAL + ID_ASC + ID_DESC + BATCH_ID_ASC + BATCH_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationGisData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationGisDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `batchId` field.""" + batchId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38151,30 +38207,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38183,16 +38241,18 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38211,30 +38271,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38243,16 +38305,18 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38271,277 +38335,125 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -"""A `ApplicationSowData` edge in the connection.""" -type ApplicationSowDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData -} - -"""Methods to use when ordering `ApplicationSowData`.""" -enum ApplicationSowDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - IS_AMENDMENT_ASC - IS_AMENDMENT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A condition to be used against `ApplicationSowData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -input ApplicationSowDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int - - """Checks for equality with the object’s `isAmendment` field.""" - isAmendment: Boolean -} - -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ChangeRequestDataEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ChangeRequestData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table to store change request data""" -type ChangeRequestData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int - - """The json form data of the change request form""" - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - amendmentNumber: Int - - """ - Reads a single `Application` that is related to this `ChangeRequestData`. - """ - applicationByApplicationId: Application - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData -} - -"""Methods to use when ordering `ChangeRequestData`.""" -enum ChangeRequestDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ChangeRequestData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ChangeRequestDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int +"""A `ApplicationGisData` edge in the connection.""" +type ApplicationGisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationGisData` at the end of the edge.""" + node: ApplicationGisData } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +"""A connection to a list of `ApplicationAnnouncement` values.""" +type ApplicationAnnouncementsConnection { + """A list of `ApplicationAnnouncement` objects.""" + nodes: [ApplicationAnnouncement]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationAnnouncementsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """ + The count of *all* `ApplicationAnnouncement` you could get from the connection. + """ totalCount: Int! } -"""Table containing list of application notifications""" -type Notification implements Node { +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each notification""" - rowId: Int! - - """Type of the notification""" - notificationType: String - - """ID of the application this notification belongs to""" - applicationId: Int - - """Additional data for the notification""" - jsonData: JSON! + """The foreign key of a form""" + announcementId: Int! - """Column referencing the email record""" - emailRecordId: Int + """The foreign key of an application""" + applicationId: Int! """created by user id""" createdBy: Int @@ -38561,48 +38473,56 @@ type Notification implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Notification`.""" - applicationByApplicationId: Application + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """Reads a single `EmailRecord` that is related to this `Notification`.""" - emailRecordByEmailRecordId: EmailRecord + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ ccbcUserByArchivedBy: CcbcUser } -"""Table containing list of application email_records""" -type EmailRecord implements Node { +"""Table to hold the announcement data""" +type Announcement implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each email sent""" + """The unique id of the announcement data""" rowId: Int! - """Email Address(es) of the recipients""" - toEmail: String - - """Email Address(es) of the CC recipients""" - ccEmail: String - - """Subject of the email""" - subject: String - - """Body of the email""" - body: String - - """Message ID of the email returned by the email server""" - messageId: String + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String - """Additional data for the email""" + """ + The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) + """ jsonData: JSON! """created by user id""" @@ -38623,17 +38543,19 @@ type EmailRecord implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Announcement`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Announcement`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Announcement`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -38652,22 +38574,22 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38698,10 +38620,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38732,10 +38654,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38766,10 +38688,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38800,22 +38722,16 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Notification`.""" -enum NotificationsOrderBy { +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { NATURAL - ID_ASC - ID_DESC - NOTIFICATION_TYPE_ASC - NOTIFICATION_TYPE_DESC + ANNOUNCEMENT_ID_ASC + ANNOUNCEMENT_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EMAIL_RECORD_ID_ASC - EMAIL_RECORD_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38828,30 +38744,25 @@ enum NotificationsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + IS_PRIMARY_ASC + IS_PRIMARY_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Notification` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnouncement` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input NotificationCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `notificationType` field.""" - notificationType: String +input ApplicationAnnouncementCondition { + """Checks for equality with the object’s `announcementId` field.""" + announcementId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `emailRecordId` field.""" - emailRecordId: Int - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -38869,19 +38780,25 @@ input NotificationCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `isPrimary` field.""" + isPrimary: Boolean + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! + edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38890,60 +38807,54 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38952,16 +38863,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38980,32 +38895,32 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39014,16 +38929,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39042,32 +38961,32 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39076,16 +38995,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39104,205 +39027,67 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""A `Notification` edge in the connection.""" -type NotificationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Notification` at the end of the edge.""" - node: Notification -} - -"""A connection to a list of `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! - - """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. - """ - edges: [ApplicationPackagesEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_package""" - rowId: Int! - - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByArchivedBy: CcbcUser + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { +"""A `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage -} - -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationPackageCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `package` field.""" - package: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! """ - A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [ApplicationGisAssessmentHhsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationProjectType` you could get from the connection. + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. """ totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { +"""Table containing data for the gis assessment hh numbers""" +type ApplicationGisAssessmentHh implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_project_type""" + """Primary key and unique identifier""" rowId: Int! - """ID of the application this application_project_type belongs to""" - applicationId: Int + """The application_id of the application this record is associated with""" + applicationId: Int! - """Column containing the project type of the application""" - projectType: String + """The number of eligible households""" + eligible: Float + + """The number of eligible indigenous households""" + eligibleIndigenous: Float """created by user id""" createdBy: Int @@ -39323,44 +39108,46 @@ type ApplicationProjectType implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationProjectType`. + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -39378,18 +39165,21 @@ enum ApplicationProjectTypesOrderBy { } """ -A condition to be used against `ApplicationProjectType` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationGisAssessmentHh` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { +input ApplicationGisAssessmentHhCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `projectType` field.""" - projectType: String + """Checks for equality with the object’s `eligible` field.""" + eligible: Float + + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -39410,59 +39200,42 @@ input ApplicationProjectTypeCondition { archivedAt: Datetime } -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. """ - edges: [AttachmentsEdge!]! + edges: [ApplicationSowDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""Table containing information about uploaded attachments""" -type Attachment implements Node { +"""Table containing the SoW data for the given application""" +type ApplicationSowData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the attachment""" + """Unique ID for the SoW""" rowId: Int! - """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service - """ - file: UUID - - """Description of the attachment""" - description: String - - """Original uploaded file name""" - fileName: String - - """Original uploaded file type""" - fileType: String - - """Original uploaded file size""" - fileSize: String - - """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to - """ - applicationId: Int! + """ID of the application this SoW belongs to""" + applicationId: Int """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) """ - applicationStatusId: Int + jsonData: JSON! """created by user id""" createdBy: Int @@ -39482,82 +39255,102 @@ type Attachment implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Attachment`.""" - applicationByApplicationId: Application + """The amendment number""" + amendmentNumber: Int + + """Column identifying if the record is an amendment""" + isAmendment: Boolean """ - Reads a single `ApplicationStatus` that is related to this `Attachment`. + Reads a single `Application` that is related to this `ApplicationSowData`. """ - applicationStatusByApplicationStatusId: ApplicationStatus + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""Table containing information about possible application statuses""" -type ApplicationStatus implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. """ - id: ID! + ccbcUserByArchivedBy: CcbcUser - """Unique ID for the application_status""" - rowId: Int! + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """ID of the application this status belongs to""" - applicationId: Int + """Only read the last `n` values of the set.""" + last: Int - """The status of the application""" - status: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Change reason for analyst status change""" - changeReason: String + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab2Condition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab2Filter + ): SowTab2SConnection! - """updated by user id""" - updatedBy: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """updated at timestamp""" - updatedAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationStatus`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. - """ - applicationStatusTypeByStatus: ApplicationStatusType + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByArchivedBy: CcbcUser + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -39576,22 +39369,22 @@ type ApplicationStatus implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -39610,22 +39403,22 @@ type ApplicationStatus implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39656,10 +39449,10 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39690,10 +39483,10 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + ccbcUsersBySowTab2SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39724,39 +39517,44 @@ type ApplicationStatus implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! -} + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! -""" -Table containing the different statuses that can be assigned to an application -""" -type ApplicationStatusType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Name of and primary key of the status of an application""" - name: String! + """Only read the last `n` values of the set.""" + last: Int - """Description of the status type""" - description: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. - """ - visibleByApplicant: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The logical order in which the status should be displayed.""" - statusOrder: Int! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. - """ - visibleByAnalyst: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39775,22 +39573,22 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusStatusAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39809,22 +39607,22 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( + ccbcUsersBySowTab7SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39855,10 +39653,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( + ccbcUsersBySowTab7SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39889,10 +39687,112 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( + ccbcUsersBySowTab7SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39908,92 +39808,136 @@ type ApplicationStatusType implements Node { """Read all values in the set before (above) this cursor.""" before: Cursor - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! +} + +"""A connection to a list of `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! + + """ + A list of edges which contains the `SowTab2` and cursor to aid in pagination. + """ + edges: [SowTab2SEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `SowTab2` you could get from the connection.""" + totalCount: Int! +} + +"""Table containing the detailed budget data for the given SoW""" +type SowTab2 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the SoW detailed budget record""" + rowId: Int! + + """ID of the SoW""" + sowId: Int + + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `ApplicationStatus` values.""" -type ApplicationStatusesConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! + """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + applicationSowDataBySowId: ApplicationSowData - """ - A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. - """ - edges: [ApplicationStatusesEdge!]! + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ - totalCount: Int! + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `SowTab2` at the end of the edge.""" + node: SowTab2 } -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - STATUS_ASC - STATUS_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC CREATED_AT_DESC - CHANGE_REASON_ASC - CHANGE_REASON_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC UPDATED_BY_ASC UPDATED_BY_DESC UPDATED_AT_ASC UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationStatus` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationStatusCondition { +input SowTab2Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Checks for equality with the object’s `status` field.""" - status: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40001,297 +39945,357 @@ input ApplicationStatusCondition { """Checks for equality with the object’s `createdAt` field.""" createdAt: Datetime - """Checks for equality with the object’s `changeReason` field.""" - changeReason: String + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime """Checks for equality with the object’s `archivedBy` field.""" archivedBy: Int """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `SowTab1` and cursor to aid in pagination. """ - edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + edges: [SowTab1SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `SowTab1` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +type SowTab1 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + sowId: Int - """The `Application` at the end of the edge.""" - node: Application + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) + """ + jsonData: JSON! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + applicationSowDataBySowId: ApplicationSowData - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + ccbcUserByCreatedBy: CcbcUser -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. - """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + ccbcUserByArchivedBy: CcbcUser +} - """Information to aid in pagination.""" - pageInfo: PageInfo! +"""A `SowTab1` edge in the connection.""" +type SowTab1SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """The `SowTab1` at the end of the edge.""" + node: SowTab1 +} + +"""Methods to use when ordering `SowTab1`.""" +enum SowTab1SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +input SowTab1Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `SowTab7` and cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + edges: [SowTab7SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `SowTab7` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +type SowTab7 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + sowId: Int - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) + """ + jsonData: JSON! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + applicationSowDataBySowId: ApplicationSowData - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `SowTab7` at the end of the edge.""" + node: SowTab7 +} + +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +input SowTab7Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `sowId` field.""" + sowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `SowTab8` and cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + edges: [SowTab8SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `SowTab8` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the detailed budget data for the given SoW""" +type SowTab8 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the SoW Tab 8""" + rowId: Int! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the SoW""" + sowId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + applicationSowDataBySowId: ApplicationSowData + + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! +"""A `SowTab8` edge in the connection.""" +type SowTab8SEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `SowTab8` at the end of the edge.""" + node: SowTab8 } -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { +"""Methods to use when ordering `SowTab8`.""" +enum SowTab8SOrderBy { NATURAL ID_ASC ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -40309,33 +40313,17 @@ enum AttachmentsOrderBy { } """ -A condition to be used against `Attachment` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input AttachmentCondition { +input SowTab8Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `file` field.""" - file: UUID - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `fileName` field.""" - fileName: String - - """Checks for equality with the object’s `fileType` field.""" - fileType: String - - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40356,35 +40344,33 @@ input AttachmentCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40403,32 +40389,30 @@ type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40437,16 +40421,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40465,32 +40449,30 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40499,16 +40481,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40527,32 +40509,30 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40561,16 +40541,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40589,309 +40569,228 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! -} - -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Attachment` at the end of the edge.""" - node: Attachment + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_analyst_lead""" - rowId: Int! +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ID of the application this analyst lead belongs to""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the analyst this analyst lead belongs to""" - analystId: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} - """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. - """ - analystByAnalystId: Analyst +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead -} - -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `analystId` field.""" - analystId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - announcementId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """archived by user id""" - archivedBy: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """archived at timestamp""" - archivedAt: Datetime + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. - """ - announcementByAnnouncementId: Announcement + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. - """ - applicationByApplicationId: Application + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab7Condition - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab7Filter + ): SowTab7SConnection! } -"""Table to hold the announcement data""" -type Announcement implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The unique id of the announcement data""" - rowId: Int! - - """List of CCBC number of the projects included in announcement""" - ccbcNumbers: String - - """ - The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """archived by user id""" - archivedBy: Int + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! - """archived at timestamp""" - archivedAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByCreatedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByUpdatedBy: CcbcUser +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByArchivedBy: CcbcUser + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40910,22 +40809,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40944,22 +40869,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40978,22 +40929,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41012,22 +40989,48 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41046,28 +41049,39 @@ type Announcement implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""Methods to use when ordering `ApplicationAnnouncement`.""" -enum ApplicationAnnouncementsOrderBy { +"""A `ApplicationSowData` edge in the connection.""" +type ApplicationSowDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData +} + +"""Methods to use when ordering `ApplicationSowData`.""" +enum ApplicationSowDataOrderBy { NATURAL - ANNOUNCEMENT_ID_ASC - ANNOUNCEMENT_ID_DESC + ID_ASC + ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -41080,25 +41094,28 @@ enum ApplicationAnnouncementsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - IS_PRIMARY_ASC - IS_PRIMARY_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + IS_AMENDMENT_ASC + IS_AMENDMENT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationAnnouncement` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationSowData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnnouncementCondition { - """Checks for equality with the object’s `announcementId` field.""" - announcementId: Int +input ApplicationSowDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -41117,41 +41134,49 @@ input ApplicationAnnouncementCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - """Checks for equality with the object’s `isPrimary` field.""" - isPrimary: Boolean + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `isAmendment` field.""" + isAmendment: Boolean } -""" -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `ProjectInformationData` values.""" +type ProjectInformationDataConnection { + """A list of `ProjectInformationData` objects.""" + nodes: [ProjectInformationData]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. """ - edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! + edges: [ProjectInformationDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ProjectInformationData` you could get from the connection. + """ totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table to store project information data""" +type ProjectInformationData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Application` at the end of the edge.""" - node: Application + """Unique id for the row""" + rowId: Int! + + """The foreign key of an application""" + applicationId: Int + + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) + """ + jsonData: JSON! """created by user id""" createdBy: Int @@ -41171,286 +41196,129 @@ type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicati """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean - """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads a single `Application` that is related to this `ProjectInformationData`. """ - historyOperation: String -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + ccbcUserByCreatedBy: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. """ - applicationAnnouncementsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + ccbcUserByUpdatedBy: CcbcUser """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { +"""A `ProjectInformationData` edge in the connection.""" +type ProjectInformationDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. - """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! +"""Methods to use when ordering `ProjectInformationData`.""" +enum ProjectInformationDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A condition to be used against `ProjectInformationData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +input ProjectInformationDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""A `ApplicationAnnouncement` edge in the connection.""" -type ApplicationAnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The `ApplicationAnnouncement` at the end of the edge.""" - node: ApplicationAnnouncement + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! +"""A connection to a list of `ChangeRequestData` values.""" +type ChangeRequestDataConnection { + """A list of `ChangeRequestData` objects.""" + nodes: [ChangeRequestData]! """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. """ - edges: [ApplicationFormDataEdge!]! + edges: [ChangeRequestDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationFormData` you could get from the connection. + The count of *all* `ChangeRequestData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to form data""" -type ApplicationFormData implements Node { +"""Table to store change request data""" +type ChangeRequestData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - formDataId: Int! + """Unique id for the row""" + rowId: Int! """The foreign key of an application""" - applicationId: Int! - - """ - Reads a single `FormData` that is related to this `ApplicationFormData`. - """ - formDataByFormDataId: FormData - - """ - Reads a single `Application` that is related to this `ApplicationFormData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold applicant form data""" -type FormData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The unique id of the form data""" - rowId: Int! + applicationId: Int - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) - """ + """The json form data of the change request form""" jsonData: JSON! - """Column saving the key of the last edited form page""" - lastEditedPage: String - - """Column referencing the form data status type, defaults to draft""" - formDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -41468,323 +41336,354 @@ type FormData implements Node { """archived at timestamp""" archivedAt: Datetime - - """Schema for the respective form_data""" - formSchemaId: Int - - """Column to track analysts reason for changing form data""" - reasonForChange: String + amendmentNumber: Int """ - Reads a single `FormDataStatusType` that is related to this `FormData`. + Reads a single `Application` that is related to this `ChangeRequestData`. """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form - - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( - """Only read the first `n` values of the set.""" - first: Int +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ChangeRequestData` at the end of the edge.""" + node: ChangeRequestData +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Methods to use when ordering `ChangeRequestData`.""" +enum ChangeRequestDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A condition to be used against `ChangeRequestData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ChangeRequestDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A connection to a list of `ApplicationCommunityProgressReportData` values. +""" +type ApplicationCommunityProgressReportDataConnection { + """A list of `ApplicationCommunityProgressReportData` objects.""" + nodes: [ApplicationCommunityProgressReportData]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. + """ + edges: [ApplicationCommunityProgressReportDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! + """ + The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. + """ + totalCount: Int! } -"""The statuses applicable to a form""" -type FormDataStatusType implements Node { +""" +Table containing the Community Progress Report data for the given application +""" +type ApplicationCommunityProgressReportData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The name of the status type""" - name: String! - - """The description of the status type""" - description: String + """Unique ID for the Community Progress Report""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this Community Progress Report belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The due date, date received and the file information of the Community Progress Report Excel file + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """archived at timestamp""" + archivedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """Only read the last `n` values of the set.""" - last: Int + """History operation""" + historyOperation: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `ApplicationCommunityProgressReportData` edge in the connection.""" +type ApplicationCommunityProgressReportDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! + """The `ApplicationCommunityProgressReportData` at the end of the edge.""" + node: ApplicationCommunityProgressReportData +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" +enum ApplicationCommunityProgressReportDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationCommunityProgressReportData` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationCommunityProgressReportDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A connection to a list of `ApplicationCommunityReportExcelData` values. +""" +type ApplicationCommunityReportExcelDataConnection { + """A list of `ApplicationCommunityReportExcelData` objects.""" + nodes: [ApplicationCommunityReportExcelData]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationCommunityReportExcelDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! + """ + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + """ + totalCount: Int! +} - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int +""" +Table containing the Community Report excel data for the given application +""" +type ApplicationCommunityReportExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the Community Report excel data""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ID of the application this Community Report belongs to""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! -} + """updated at timestamp""" + updatedAt: Datetime! -"""A connection to a list of `FormData` values.""" -type FormDataConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `FormData` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. """ - edges: [FormDataEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `FormData` edge in the connection.""" -type FormDataEdge { +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData } -"""Methods to use when ordering `FormData`.""" -enum FormDataOrderBy { +"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" +enum ApplicationCommunityReportExcelDataOrderBy { NATURAL ID_ASC ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - LAST_EDITED_PAGE_ASC - LAST_EDITED_PAGE_DESC - FORM_DATA_STATUS_TYPE_ID_ASC - FORM_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -41797,31 +41696,24 @@ enum FormDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - FORM_SCHEMA_ID_ASC - FORM_SCHEMA_ID_DESC - REASON_FOR_CHANGE_ASC - REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormData` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationCommunityReportExcelData` object +types. All fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataCondition { +input ApplicationCommunityReportExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `lastEditedPage` field.""" - lastEditedPage: String - - """Checks for equality with the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -41839,965 +41731,924 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int - - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationClaimsDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationClaimsData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the claims data for the given application""" +type ApplicationClaimsData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique id for the claims""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Id of the application the claims belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The claims form json data""" + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """archived by user id""" + archivedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """archived at timestamp""" + archivedAt: Datetime + + """Column to track if record was created, updated or deleted for history""" + historyOperation: String """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationClaimsData`. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! +"""Methods to use when ordering `ApplicationClaimsData`.""" +enum ApplicationClaimsDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A condition to be used against `ApplicationClaimsData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} +input ApplicationClaimsDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +"""A connection to a list of `ApplicationClaimsExcelData` values.""" +type ApplicationClaimsExcelDataConnection { + """A list of `ApplicationClaimsExcelData` objects.""" + nodes: [ApplicationClaimsExcelData]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! + edges: [ApplicationClaimsExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """ + The count of *all* `ApplicationClaimsExcelData` you could get from the connection. + """ totalCount: Int! } -"""Table to hold the json_schema for forms""" -type Form implements Node { +"""Table containing the claims excel data for the given application""" +type ApplicationClaimsExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key on form""" + """Unique ID for the claims excel data""" rowId: Int! - """The end url for the form data""" - slug: String - - """The JSON schema for the respective form""" - jsonSchema: JSON! - - """Description of the form""" - description: String - - """The type of form being stored""" - formType: String - - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType - - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! - - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ID of the application this data belongs to""" + applicationId: Int - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataStatusTypeCondition + """created by user id""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + """created at timestamp""" + createdAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """updated by user id""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """updated at timestamp""" + updatedAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """archived by user id""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. + """ + applicationByApplicationId: Application - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A `ApplicationClaimsExcelData` edge in the connection.""" +type ApplicationClaimsExcelDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ApplicationClaimsExcelData` at the end of the edge.""" + node: ApplicationClaimsExcelData +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Methods to use when ordering `ApplicationClaimsExcelData`.""" +enum ApplicationClaimsExcelDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A condition to be used against `ApplicationClaimsExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationClaimsExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationMilestoneData` values.""" +type ApplicationMilestoneDataConnection { + """A list of `ApplicationMilestoneData` objects.""" + nodes: [ApplicationMilestoneData]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + """ + edges: [ApplicationMilestoneDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! + """ + The count of *all* `ApplicationMilestoneData` you could get from the connection. + """ + totalCount: Int! } -"""Table containing the different types of forms used in the application""" -type FormType implements Node { +"""Table containing the milestone data for the given application""" +type ApplicationMilestoneData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier of the type of form""" - name: String! + """Unique id for the milestone""" + rowId: Int! - """Description of the type of form""" - description: String + """Id of the application the milestone belongs to""" + applicationId: Int - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( - """Only read the first `n` values of the set.""" - first: Int + """The milestone form json data""" + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormsConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! + """History operation""" + historyOperation: String """ - A list of edges which contains the `Form` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationMilestoneData`. """ - edges: [FormsEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `Form` edge in the connection.""" -type FormsEdge { +"""A `ApplicationMilestoneData` edge in the connection.""" +type ApplicationMilestoneDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `ApplicationMilestoneData` at the end of the edge.""" + node: ApplicationMilestoneData } -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { +"""Methods to use when ordering `ApplicationMilestoneData`.""" +enum ApplicationMilestoneDataOrderBy { NATURAL ID_ASC ID_DESC - SLUG_ASC - SLUG_DESC - JSON_SCHEMA_ASC - JSON_SCHEMA_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FORM_TYPE_ASC - FORM_TYPE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input FormCondition { +input ApplicationMilestoneDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `slug` field.""" - slug: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonSchema` field.""" - jsonSchema: JSON + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Checks for equality with the object’s `formType` field.""" - formType: String + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -""" -A connection to a list of `FormDataStatusType` values, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. """ - edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [ApplicationMilestoneExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. """ totalCount: Int! } -""" -A `FormDataStatusType` edge in the connection, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """Unique ID for the milestone excel data""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this data belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData +} + +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormDataStatusType` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String +input ApplicationMilestoneExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationInternalDescriptionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationInternalDescription` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the internal description for the given application""" +type ApplicationInternalDescription implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique id for the row""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Id of the application the description belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The internal description for the given application""" + description: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationInternalDescription`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { +"""A `ApplicationInternalDescription` edge in the connection.""" +type ApplicationInternalDescriptionsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationInternalDescription` at the end of the edge.""" + node: ApplicationInternalDescription +} - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationInternalDescription`.""" +enum ApplicationInternalDescriptionsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationInternalDescription` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `description` field.""" + description: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationProjectTypesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationProjectType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Table containing the project type of the application""" +type ApplicationProjectType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Unique ID for the application_project_type""" + rowId: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ID of the application this application_project_type belongs to""" + applicationId: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Column containing the project type of the application""" + projectType: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """created by user id""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """created at timestamp""" + createdAt: Datetime! -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """updated by user id""" + updatedBy: Int - """The `Form` at the end of the edge.""" - node: Form + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `Application` that is related to this `ApplicationProjectType`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType } -"""Methods to use when ordering `ApplicationFormData`.""" -enum ApplicationFormDataOrderBy { +"""Methods to use when ordering `ApplicationProjectType`.""" +enum ApplicationProjectTypesOrderBy { NATURAL - FORM_DATA_ID_ASC - FORM_DATA_ID_DESC + ID_ASC + ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC + PROJECT_TYPE_ASC + PROJECT_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationFormData` object types. All fields +A condition to be used against `ApplicationProjectType` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationFormDataCondition { - """Checks for equality with the object’s `formDataId` field.""" - formDataId: Int +input ApplicationProjectTypeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int -} - -""" -A connection to a list of `Application` values, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - """ - A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! + """Checks for equality with the object’s `projectType` field.""" + projectType: String - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime -""" -A `Application` edge in the connection, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The `Application` at the end of the edge.""" - node: Application -} + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `Notification` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [NotificationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationRfiData` you could get from the connection. - """ + """The count of *all* `Notification` you could get from the connection.""" totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationRfiData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - rfiDataId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" - rfiDataByRfiDataId: RfiData - - """ - Reads a single `Application` that is related to this `ApplicationRfiData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold RFI form data""" -type RfiData implements Node { +"""Table containing list of application notifications""" +type Notification implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique ID for each notification""" rowId: Int! - """Reference number assigned to the RFI""" - rfiNumber: String + """Type of the notification""" + notificationType: String - """ - The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) - """ + """ID of the application this notification belongs to""" + applicationId: Int + + """Additional data for the notification""" jsonData: JSON! - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String + """Column referencing the email record""" + emailRecordId: Int """created by user id""" createdBy: Int @@ -42817,80 +42668,79 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """Reads a single `Application` that is related to this `Notification`.""" + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `EmailRecord` that is related to this `Notification`.""" + emailRecordByEmailRecordId: EmailRecord + + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( - """Only read the first `n` values of the set.""" - first: Int +"""Table containing list of application email_records""" +type EmailRecord implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for each email sent""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Email Address(es) of the recipients""" + toEmail: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Email Address(es) of the CC recipients""" + ccEmail: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Subject of the email""" + subject: String - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Body of the email""" + body: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition + """Message ID of the email returned by the email server""" + messageId: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """Additional data for the email""" + jsonData: JSON! - """Computed column to return all attachement rows for an rfi_data row""" - attachments( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """archived at timestamp""" + archivedAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -42909,36 +42759,22 @@ type RfiData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! -} - -"""The statuses applicable to an RFI""" -type RfiDataStatusType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The name of the status type""" - name: String! - - """The description of the status type""" - description: String + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -42957,22 +42793,22 @@ type RfiDataStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationFilter + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43003,10 +42839,10 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43037,10 +42873,10 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43071,46 +42907,22 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} - -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! - - """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. - """ - edges: [RfiDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! -} - -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RfiData` at the end of the edge.""" - node: RfiData + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { NATURAL ID_ASC ID_DESC - RFI_NUMBER_ASC - RFI_NUMBER_DESC + NOTIFICATION_TYPE_ASC + NOTIFICATION_TYPE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - RFI_DATA_STATUS_TYPE_ID_ASC - RFI_DATA_STATUS_TYPE_ID_DESC + EMAIL_RECORD_ID_ASC + EMAIL_RECORD_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -43128,20 +42940,24 @@ enum RfiDataOrderBy { } """ -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Notification` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input RfiDataCondition { +input NotificationCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String + """Checks for equality with the object’s `notificationType` field.""" + notificationType: String + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String + """Checks for equality with the object’s `emailRecordId` field.""" + emailRecordId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -43162,33 +42978,35 @@ input RfiDataCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -43207,30 +43025,32 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43239,16 +43059,16 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43267,30 +43087,32 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43299,16 +43121,16 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43327,81 +43149,90 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { - NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationRfiData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! } -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { +"""A `Notification` edge in the connection.""" +type NotificationsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData + """The `Notification` at the end of the edge.""" + node: Notification } """A connection to a list of `ApplicationPendingChangeRequest` values.""" @@ -44003,36 +43834,38 @@ input HistoryItemFilter { } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -44051,179 +43884,70 @@ type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTyp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""Methods to use when ordering `AssessmentType`.""" -enum AssessmentTypesOrderBy { +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { NATURAL NAME_ASC NAME_DESC DESCRIPTION_ASC DESCRIPTION_DESC + VISIBLE_BY_APPLICANT_ASC + VISIBLE_BY_APPLICANT_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + VISIBLE_BY_ANALYST_ASC + VISIBLE_BY_ANALYST_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `AssessmentType` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input AssessmentTypeCondition { +input ApplicationStatusTypeCondition { """Checks for equality with the object’s `name` field.""" name: String """Checks for equality with the object’s `description` field.""" description: String -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44232,16 +43956,18 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyCon totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44260,32 +43986,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44295,19 +44021,17 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44326,32 +44050,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44361,19 +44085,17 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44392,54 +44114,54 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -44458,32 +44180,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44492,20 +44214,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44524,32 +44242,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44558,20 +44276,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44590,32 +44304,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44624,20 +44338,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44656,52 +44366,84 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `FormData` values, with data from `ApplicationFormData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `FormData` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `FormData` edge in the connection, with data from `ApplicationFormData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `FormData` at the end of the edge.""" + node: FormData +} - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( +""" +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +""" +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! + + """ + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + """ + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Analyst` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Analyst` at the end of the edge.""" + node: Analyst + + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -44720,28 +44462,30 @@ type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""Methods to use when ordering `GisData`.""" -enum GisDataOrderBy { +"""Methods to use when ordering `Analyst`.""" +enum AnalystsOrderBy { NATURAL ID_ASC ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -44754,19 +44498,26 @@ enum GisDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + ACTIVE_ASC + ACTIVE_DESC + EMAIL_ASC + EMAIL_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input GisDataCondition { +input AnalystCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `givenName` field.""" + givenName: String + + """Checks for equality with the object’s `familyName` field.""" + familyName: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -44785,19 +44536,25 @@ input GisDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `active` field.""" + active: Boolean + + """Checks for equality with the object’s `email` field.""" + email: String } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44807,17 +44564,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44836,32 +44595,32 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44871,17 +44630,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44900,32 +44661,32 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44935,17 +44696,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44964,32 +44727,149 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! + + """ + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentType` you could get from the connection.""" + totalCount: Int! +} + +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +"""Methods to use when ordering `AssessmentType`.""" +enum AssessmentTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `AssessmentType` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input AssessmentTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44998,20 +44878,16 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45030,32 +44906,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45064,20 +44940,16 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45096,32 +44968,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45130,20 +45002,16 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45162,32 +45030,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45197,17 +45065,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45226,32 +45094,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45261,17 +45129,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45290,32 +45158,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45325,17 +45193,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45354,32 +45222,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45389,9 +45257,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45399,9 +45267,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByCreatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45420,32 +45288,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45455,9 +45323,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45465,9 +45333,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByUpdatedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45486,32 +45354,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45521,9 +45389,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45531,9 +45399,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByArchivedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45552,54 +45420,52 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -45618,34 +45484,84 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} + +"""Methods to use when ordering `GisData`.""" +enum GisDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { +input GisDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45655,19 +45571,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45686,34 +45600,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45723,19 +45635,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45754,34 +45664,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45791,19 +45699,17 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45822,164 +45728,146 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + """The `Announcement` at the end of the edge.""" + node: Announcement - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + Column describing the operation (created, updated, deleted) for context on the history page """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! + historyOperation: String +} - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! +"""Methods to use when ordering `Announcement`.""" +enum AnnouncementsOrderBy { + NATURAL + ID_ASC + ID_DESC + CCBC_NUMBERS_ASC + CCBC_NUMBERS_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +input AnnouncementCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `ccbcNumbers` field.""" + ccbcNumbers: String - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45989,9 +45877,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45999,9 +45887,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46020,32 +45908,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46055,9 +45943,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46065,9 +45953,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46086,32 +45974,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46121,9 +46009,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46131,9 +46019,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46152,32 +46040,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46187,9 +46075,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46197,9 +46085,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByCreatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46218,32 +46106,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46253,9 +46141,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46263,9 +46151,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByUpdatedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46284,32 +46172,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46319,9 +46207,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46329,9 +46217,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByArchivedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46350,32 +46238,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46385,19 +46273,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46416,32 +46302,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46451,19 +46337,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46482,32 +46366,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46517,19 +46401,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46548,32 +46430,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46583,17 +46465,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46612,32 +46496,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46647,17 +46531,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46676,32 +46562,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46711,17 +46597,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46740,19 +46628,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ @@ -46948,34 +46836,38 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46994,110 +46886,34 @@ type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { - NATURAL - ID_ASC - ID_DESC - TO_EMAIL_ASC - TO_EMAIL_DESC - CC_EMAIL_ASC - CC_EMAIL_DESC - SUBJECT_ASC - SUBJECT_DESC - BODY_ASC - BODY_DESC - MESSAGE_ID_ASC - MESSAGE_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `EmailRecord` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input EmailRecordCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `toEmail` field.""" - toEmail: String - - """Checks for equality with the object’s `ccEmail` field.""" - ccEmail: String - - """Checks for equality with the object’s `subject` field.""" - subject: String - - """Checks for equality with the object’s `body` field.""" - body: String - - """Checks for equality with the object’s `messageId` field.""" - messageId: String - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47106,16 +46922,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47134,32 +46954,34 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47168,16 +46990,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47196,32 +47022,34 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47230,16 +47058,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47258,32 +47090,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47293,17 +47125,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47322,32 +47156,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47357,17 +47191,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47386,32 +47222,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47421,17 +47257,17 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47450,32 +47286,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47485,19 +47321,17 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47516,32 +47350,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47551,19 +47385,17 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47582,32 +47414,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47617,9 +47449,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47627,9 +47459,9 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationProjectTypesByArchivedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47648,54 +47480,54 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47714,32 +47546,32 @@ type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatus """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47748,16 +47580,20 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47776,32 +47612,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47810,16 +47646,20 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47838,32 +47678,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47872,16 +47712,20 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47900,54 +47744,54 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnalystLeadsByAnalystId( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47966,99 +47810,98 @@ type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! -} - -"""Methods to use when ordering `Analyst`.""" -enum AnalystsOrderBy { - NATURAL - ID_ASC - ID_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ACTIVE_ASC - ACTIVE_DESC - EMAIL_ASC - EMAIL_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -input AnalystCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `active` field.""" - active: Boolean + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `email` field.""" - email: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48068,9 +47911,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48078,9 +47921,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48099,32 +47942,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48134,9 +47977,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48144,9 +47987,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48165,32 +48008,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48200,9 +48043,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48210,9 +48053,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnalystLeadsByArchivedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48231,146 +48074,98 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - historyOperation: String -} - -"""Methods to use when ordering `Announcement`.""" -enum AnnouncementsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBERS_ASC - CCBC_NUMBERS_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Announcement` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AnnouncementCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `ccbcNumbers` field.""" - ccbcNumbers: String + applicationInternalDescriptionsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationInternalDescriptionCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48380,9 +48175,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48390,9 +48185,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByCreatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48411,32 +48206,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48446,9 +48241,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48456,9 +48251,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationAnnouncementsByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48477,32 +48272,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48512,9 +48307,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48522,9 +48317,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationAnnouncementsByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48543,114 +48338,116 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `FormData` values, with data from `ApplicationFormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `FormData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormData` edge in the connection, with data from `ApplicationFormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData -} - -""" -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. -""" -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + applicationProjectTypesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Only read the last `n` values of the set.""" + last: Int - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A `RfiData` edge in the connection, with data from `ApplicationRfiData`. -""" -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationProjectTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -48669,70 +48466,110 @@ type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""Methods to use when ordering `ApplicationStatusType`.""" -enum ApplicationStatusTypesOrderBy { +"""Methods to use when ordering `EmailRecord`.""" +enum EmailRecordsOrderBy { NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - VISIBLE_BY_APPLICANT_ASC - VISIBLE_BY_APPLICANT_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - VISIBLE_BY_ANALYST_ASC - VISIBLE_BY_ANALYST_DESC + ID_ASC + ID_DESC + TO_EMAIL_ASC + TO_EMAIL_DESC + CC_EMAIL_ASC + CC_EMAIL_DESC + SUBJECT_ASC + SUBJECT_DESC + BODY_ASC + BODY_DESC + MESSAGE_ID_ASC + MESSAGE_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationStatusType` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String +input EmailRecordCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `toEmail` field.""" + toEmail: String - """Checks for equality with the object’s `visibleByApplicant` field.""" - visibleByApplicant: Boolean + """Checks for equality with the object’s `ccEmail` field.""" + ccEmail: String - """Checks for equality with the object’s `statusOrder` field.""" - statusOrder: Int + """Checks for equality with the object’s `subject` field.""" + subject: String + + """Checks for equality with the object’s `body` field.""" + body: String + + """Checks for equality with the object’s `messageId` field.""" + messageId: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Checks for equality with the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: Boolean + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48741,18 +48578,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48771,32 +48606,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48805,18 +48640,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48835,32 +48668,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48869,18 +48702,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48899,19 +48730,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ @@ -49511,6 +49342,377 @@ type ApplicationsEdge { node: Application } +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! +} + +"""A `Intake` edge in the connection.""" +type IntakesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Intake` at the end of the edge.""" + node: Intake +} + +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! + + """ + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. + """ + edges: [RecordVersionsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RecordVersion` you could get from the connection.""" + totalCount: Int! +} + +""" +Table for tracking history records on tables that auditing is enabled on +""" +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier""" + rowId: BigInt! + + """The id of the record the history record is associated with""" + recordId: UUID + + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID + + """The operation performed on the record (created, updated, deleted)""" + op: Operation! + + """The timestamp of the history record""" + ts: Datetime! + + """The oid of the table the record is associated with""" + tableOid: BigFloat! + + """The schema of the table the record is associated with""" + tableSchema: String! + + """The name of the table the record is associated with""" + tableName: String! + + """The user that created the record""" + createdBy: Int + + """The timestamp of when the record was created""" + createdAt: Datetime! + + """The record in JSON format""" + record: JSON + + """The previous version of the record in JSON format""" + oldRecord: JSON + + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser +} + +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} + +"""Methods to use when ordering `RecordVersion`.""" +enum RecordVersionsOrderBy { + NATURAL + ID_ASC + ID_DESC + RECORD_ID_ASC + RECORD_ID_DESC + OLD_RECORD_ID_ASC + OLD_RECORD_ID_DESC + OP_ASC + OP_DESC + TS_ASC + TS_DESC + TABLE_OID_ASC + TABLE_OID_DESC + TABLE_SCHEMA_ASC + TABLE_SCHEMA_DESC + TABLE_NAME_ASC + TABLE_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + RECORD_ASC + RECORD_DESC + OLD_RECORD_ASC + OLD_RECORD_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt + + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID + + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID + + """Checks for equality with the object’s `op` field.""" + op: Operation + + """Checks for equality with the object’s `ts` field.""" + ts: Datetime + + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat + + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String + + """Checks for equality with the object’s `tableName` field.""" + tableName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `record` field.""" + record: JSON + + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON +} + +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! + + """ + A list of edges which contains the `GisData` and cursor to aid in pagination. + """ + edges: [GisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! +} + +"""A `GisData` edge in the connection.""" +type GisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `GisData` at the end of the edge.""" + node: GisData +} + """A connection to a list of `CbcProject` values.""" type CbcProjectsConnection { """A list of `CbcProject` objects.""" @@ -49639,58 +49841,6 @@ input CbcProjectCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. - """ - edges: [CcbcUsersEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `GisData` and cursor to aid in pagination. - """ - edges: [GisDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `GisData` you could get from the connection.""" - totalCount: Int! -} - -"""A `GisData` edge in the connection.""" -type GisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `GisData` at the end of the edge.""" - node: GisData -} - """A connection to a list of `EmailRecord` values.""" type EmailRecordsConnection { """A list of `EmailRecord` objects.""" @@ -49717,156 +49867,6 @@ type EmailRecordsEdge { node: EmailRecord } -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! - - """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. - """ - edges: [RecordVersionsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RecordVersion` you could get from the connection.""" - totalCount: Int! -} - -""" -Table for tracking history records on tables that auditing is enabled on -""" -type RecordVersion implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: BigInt! - - """The id of the record the history record is associated with""" - recordId: UUID - - """ - The id of the previous version of the record the history record is associated with - """ - oldRecordId: UUID - - """The operation performed on the record (created, updated, deleted)""" - op: Operation! - - """The timestamp of the history record""" - ts: Datetime! - - """The oid of the table the record is associated with""" - tableOid: BigFloat! - - """The schema of the table the record is associated with""" - tableSchema: String! - - """The name of the table the record is associated with""" - tableName: String! - - """The user that created the record""" - createdBy: Int - - """The timestamp of when the record was created""" - createdAt: Datetime! - - """The record in JSON format""" - record: JSON - - """The previous version of the record in JSON format""" - oldRecord: JSON - - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} - -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion -} - -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { - NATURAL - ID_ASC - ID_DESC - RECORD_ID_ASC - RECORD_ID_DESC - OLD_RECORD_ID_ASC - OLD_RECORD_ID_DESC - OP_ASC - OP_DESC - TS_ASC - TS_DESC - TABLE_OID_ASC - TABLE_OID_DESC - TABLE_SCHEMA_ASC - TABLE_SCHEMA_DESC - TABLE_NAME_ASC - TABLE_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - RECORD_ASC - RECORD_DESC - OLD_RECORD_ASC - OLD_RECORD_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt - - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID - - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID - - """Checks for equality with the object’s `op` field.""" - op: Operation - - """Checks for equality with the object’s `ts` field.""" - ts: Datetime - - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat - - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String - - """Checks for equality with the object’s `tableName` field.""" - tableName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `record` field.""" - record: JSON - - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON -} - """A connection to a list of `Cbc` values.""" type CbcsConnection { """A list of `Cbc` objects.""" @@ -53256,34 +53256,34 @@ input ReportingGcpeCondition { } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53302,32 +53302,32 @@ type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53336,16 +53336,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53364,32 +53364,32 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53398,16 +53398,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53426,50 +53426,112 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUsersConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53488,32 +53550,32 @@ type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53522,16 +53584,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53550,32 +53612,30 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53584,16 +53644,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53612,50 +53672,48 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Intake` values, with data from `Application`. -""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53674,50 +53732,50 @@ type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -53736,32 +53794,53 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! +} + +"""Methods to use when ordering `GaplessCounter`.""" +enum GaplessCountersOrderBy { + NATURAL + ID_ASC + ID_DESC + COUNTER_ASC + COUNTER_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A condition to be used against `GaplessCounter` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +input GaplessCounterCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `counter` field.""" + counter: Int +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53770,16 +53849,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53798,52 +53877,48 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53862,52 +53937,50 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -53926,32 +53999,30 @@ type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53960,16 +54031,16 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53988,32 +54059,30 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54022,16 +54091,16 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54050,52 +54119,50 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -54114,52 +54181,50 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -54178,32 +54243,32 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54212,16 +54277,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54240,32 +54305,32 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54274,16 +54339,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54302,52 +54367,50 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -54366,52 +54429,50 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54430,32 +54491,32 @@ type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54464,16 +54525,16 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54492,50 +54553,50 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -54554,32 +54615,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54588,16 +54649,16 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54616,32 +54677,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54650,16 +54711,16 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54678,50 +54739,52 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54740,50 +54803,54 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -54802,32 +54869,32 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54836,16 +54903,18 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54864,32 +54933,32 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54898,16 +54967,18 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54926,32 +54997,32 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54961,19 +55032,17 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54992,54 +55061,54 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -55058,32 +55127,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55093,19 +55162,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55124,54 +55191,52 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55190,54 +55255,52 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55256,54 +55319,54 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -55322,54 +55385,52 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55388,32 +55449,32 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55423,19 +55484,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55454,54 +55513,50 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55520,54 +55575,54 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -55586,32 +55641,32 @@ type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55620,16 +55675,16 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55648,32 +55703,32 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55682,16 +55737,16 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55710,48 +55765,50 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55770,54 +55827,54 @@ type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -55836,32 +55893,32 @@ type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55870,16 +55927,16 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55898,32 +55955,32 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55932,16 +55989,16 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55960,48 +56017,50 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56020,54 +56079,54 @@ type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -56086,32 +56145,32 @@ type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56120,16 +56179,16 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56148,32 +56207,32 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56182,76 +56241,16 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} - -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Form` at the end of the edge.""" - node: Form - - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56270,54 +56269,54 @@ type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -56336,32 +56335,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56370,20 +56369,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56402,32 +56397,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56436,20 +56431,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56468,54 +56459,48 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -56534,54 +56519,54 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -56600,32 +56585,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56634,20 +56619,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56666,54 +56647,50 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56732,54 +56709,48 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -56798,54 +56769,54 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -56864,52 +56835,50 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56928,52 +56897,50 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56992,52 +56959,48 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -57056,32 +57019,30 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57090,18 +57051,16 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57120,52 +57079,48 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `GisData` values, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57184,52 +57139,48 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57248,32 +57199,30 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57282,18 +57231,16 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57312,32 +57259,30 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57346,18 +57291,16 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57376,52 +57319,48 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `GisData` values, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57440,32 +57379,32 @@ type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57475,17 +57414,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57504,52 +57445,54 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -57568,32 +57511,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57603,17 +57546,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57632,54 +57577,54 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57698,54 +57643,54 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57764,54 +57709,54 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -57830,54 +57775,54 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57896,32 +57841,32 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57931,9 +57876,9 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57941,9 +57886,9 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57962,54 +57907,54 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58028,54 +57973,54 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -58094,32 +58039,32 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58129,9 +58074,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58139,9 +58084,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58160,32 +58105,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58195,9 +58140,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58205,9 +58150,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58226,19 +58171,19 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ @@ -58822,33 +58767,37 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { ): RfiDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58867,48 +58816,52 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -58927,50 +58880,50 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58989,53 +58942,32 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59044,16 +58976,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59072,48 +59004,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59132,50 +59068,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -59194,30 +59132,32 @@ type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59226,16 +59166,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59254,30 +59194,32 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59286,16 +59228,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59314,50 +59256,52 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59376,52 +59320,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -59440,32 +59384,32 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59474,18 +59418,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59504,32 +59446,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59538,18 +59480,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59568,32 +59508,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59603,17 +59543,17 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59632,32 +59572,32 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59667,17 +59607,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59696,32 +59636,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59731,17 +59671,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59760,32 +59700,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59795,17 +59735,17 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59824,32 +59764,32 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59859,17 +59799,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59888,32 +59828,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59923,17 +59863,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59952,32 +59892,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59987,19 +59927,17 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60018,32 +59956,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60053,19 +59991,17 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60084,32 +60020,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60119,19 +60055,17 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60150,32 +60084,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60185,9 +60119,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60195,9 +60129,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByApplicationId( + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60216,32 +60150,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60251,9 +60185,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60261,9 +60195,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByCreatedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60282,32 +60216,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60317,9 +60251,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60327,9 +60261,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByArchivedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60348,32 +60282,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60383,9 +60317,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60393,9 +60327,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByApplicationId( + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60414,32 +60348,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60449,9 +60383,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60459,9 +60393,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByCreatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60480,32 +60414,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60515,9 +60449,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60525,9 +60459,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByUpdatedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60546,32 +60480,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60581,9 +60515,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60591,9 +60525,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationCommunityProgressReportDataByApplicationId( + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60612,34 +60546,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60649,9 +60581,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60659,9 +60591,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60680,34 +60612,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60717,9 +60647,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60727,9 +60657,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationCommunityProgressReportDataByArchivedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60748,56 +60678,48 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60816,34 +60738,30 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60852,20 +60770,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60884,34 +60798,30 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60920,20 +60830,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60952,56 +60858,48 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61020,34 +60918,30 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61056,20 +60950,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61088,34 +60978,30 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61124,20 +61010,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61156,56 +61038,52 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GisData` at the end of the edge.""" + node: GisData - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -61224,54 +61102,52 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61290,32 +61166,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61325,19 +61201,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61356,54 +61230,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61422,54 +61294,52 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -61488,54 +61358,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61554,54 +61422,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61620,32 +61486,32 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61655,19 +61521,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61686,54 +61550,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -61752,32 +61614,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61787,19 +61649,17 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61818,32 +61678,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61853,19 +61713,17 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61884,32 +61742,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61919,19 +61777,17 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61950,54 +61806,50 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62016,32 +61868,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62050,20 +61902,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62082,32 +61930,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62116,20 +61964,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62148,54 +61992,50 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62214,32 +62054,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62248,20 +62088,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62280,32 +62116,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62314,20 +62150,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62346,54 +62178,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -62412,54 +62244,54 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62478,32 +62310,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62513,9 +62345,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62523,9 +62355,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62544,54 +62376,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByApplicationId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62610,54 +62442,54 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByCreatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -62676,54 +62508,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62742,54 +62574,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByApplicationId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62808,32 +62640,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62843,9 +62675,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62853,9 +62685,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62874,54 +62706,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -62940,32 +62772,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62975,9 +62807,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62985,9 +62817,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63006,32 +62838,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63041,9 +62873,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63051,9 +62883,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63072,32 +62904,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63107,9 +62939,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63117,9 +62949,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63138,32 +62970,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63173,9 +63005,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63183,9 +63015,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63204,32 +63036,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63239,9 +63071,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63249,9 +63081,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63270,32 +63102,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63305,9 +63137,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63315,9 +63147,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63336,32 +63168,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63371,9 +63203,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63381,9 +63213,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63402,32 +63234,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63437,9 +63269,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63447,9 +63279,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63468,32 +63300,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63503,9 +63335,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63513,9 +63345,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63534,32 +63366,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63569,17 +63401,19 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63598,32 +63432,32 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63633,17 +63467,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63662,32 +63498,32 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63697,17 +63533,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63726,32 +63564,32 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63763,7 +63601,7 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63808,14 +63646,14 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63827,7 +63665,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63835,7 +63673,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63872,14 +63710,14 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63891,7 +63729,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63936,14 +63774,14 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63955,7 +63793,7 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64000,14 +63838,14 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64019,7 +63857,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64064,14 +63902,14 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64083,7 +63921,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -64091,7 +63929,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64126,34 +63964,36 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64172,32 +64012,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64206,16 +64046,18 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64234,32 +64076,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64268,16 +64110,18 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64296,50 +64140,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64358,32 +64206,30 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64392,16 +64238,16 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64420,32 +64266,30 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64454,16 +64298,16 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64482,52 +64326,54 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64546,32 +64392,30 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64580,18 +64424,16 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64610,32 +64452,30 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64644,18 +64484,16 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64674,52 +64512,54 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64738,32 +64578,30 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64772,18 +64610,16 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64802,32 +64638,30 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64836,18 +64670,16 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64866,52 +64698,54 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64930,32 +64764,30 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64964,18 +64796,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64994,32 +64824,30 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65028,18 +64856,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65058,50 +64884,54 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65120,50 +64950,48 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65182,32 +65010,30 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65216,16 +65042,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65244,50 +65070,54 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65306,50 +65136,48 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65368,50 +65196,48 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65430,50 +65256,54 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65492,32 +65322,32 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65526,16 +65356,20 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65554,50 +65388,54 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65616,50 +65454,54 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65678,32 +65520,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65712,16 +65554,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65740,32 +65586,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65774,16 +65620,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65802,32 +65652,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65837,17 +65687,19 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65866,32 +65718,32 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65901,17 +65753,19 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65930,32 +65784,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65965,17 +65819,19 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65994,52 +65850,54 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -66058,32 +65916,30 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66092,18 +65948,16 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66122,32 +65976,30 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66156,18 +66008,16 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66186,52 +66036,54 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -66250,32 +66102,30 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66284,18 +66134,16 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66314,32 +66162,30 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66348,18 +66194,16 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66378,54 +66222,54 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -66444,32 +66288,30 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66478,20 +66320,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66510,32 +66348,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66544,20 +66380,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66576,54 +66408,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -66642,32 +66474,30 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66676,20 +66506,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66708,32 +66534,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66742,20 +66566,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66774,54 +66594,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -66840,32 +66660,30 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66874,20 +66692,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66906,32 +66720,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66940,20 +66752,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66972,50 +66780,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -67034,32 +66846,30 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67068,16 +66878,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67096,32 +66906,30 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67130,16 +66938,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67158,50 +66966,52 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67220,32 +67030,32 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67254,16 +67064,18 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67282,32 +67094,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67316,16 +67128,18 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67344,32 +67158,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67378,16 +67192,18 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnecti totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67406,54 +67222,52 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67472,32 +67286,32 @@ type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67506,16 +67320,18 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67534,50 +67350,52 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67596,50 +67414,52 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67658,54 +67478,52 @@ type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67724,50 +67542,54 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67786,32 +67608,34 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67820,16 +67644,20 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67848,50 +67676,56 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67910,54 +67744,56 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67976,32 +67812,34 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68010,16 +67848,20 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68038,32 +67880,34 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68072,16 +67916,20 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68100,48 +67948,56 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68160,30 +68016,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68192,16 +68052,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68220,30 +68084,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68252,16 +68120,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68280,48 +68152,56 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68340,30 +68220,32 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68372,16 +68254,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68400,30 +68286,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68432,16 +68320,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68460,48 +68352,54 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68520,30 +68418,32 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68552,16 +68452,20 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68580,30 +68484,32 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68612,16 +68518,20 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68640,48 +68550,54 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68700,30 +68616,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68732,16 +68650,20 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68760,30 +68682,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68792,16 +68716,20 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68820,32 +68748,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68855,19 +68783,17 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68886,54 +68812,52 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68952,32 +68876,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68987,19 +68911,17 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69018,54 +68940,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69084,54 +69004,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69150,54 +69068,52 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69216,54 +69132,52 @@ type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69282,32 +69196,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69317,19 +69231,17 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69348,54 +69260,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69414,54 +69324,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByAnalystId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69480,32 +69390,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69515,9 +69425,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69525,9 +69435,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByCreatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69546,32 +69456,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69581,9 +69491,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69591,9 +69501,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByUpdatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69612,54 +69522,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByAnnouncementId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69678,54 +69588,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByApplicationId( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69744,32 +69654,32 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69779,9 +69689,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69789,9 +69699,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByUpdatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69810,54 +69720,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByArchivedBy( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69876,54 +69786,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByAnnouncementId( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69942,54 +69852,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByApplicationId( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70008,54 +69918,54 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70074,32 +69984,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70109,9 +70019,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70119,9 +70029,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70140,54 +70050,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70206,32 +70116,32 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70241,9 +70151,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70251,9 +70161,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70272,32 +70182,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70307,9 +70217,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70317,9 +70227,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70338,32 +70248,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70373,9 +70283,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70383,9 +70293,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70404,32 +70314,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70439,17 +70349,19 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70468,54 +70380,54 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70534,32 +70446,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70569,17 +70481,19 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70598,52 +70512,54 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70662,52 +70578,54 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70726,54 +70644,54 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70792,52 +70710,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70856,32 +70776,32 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70891,17 +70811,19 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70920,52 +70842,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70984,54 +70908,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71050,32 +70974,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71085,17 +71009,19 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71114,32 +71040,32 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71149,17 +71075,19 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71178,32 +71106,32 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71212,16 +71140,16 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71240,32 +71168,32 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71274,16 +71202,16 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71302,32 +71230,32 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71336,16 +71264,16 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71364,32 +71292,32 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71398,16 +71326,16 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71426,32 +71354,32 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71460,16 +71388,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71488,32 +71416,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71522,16 +71450,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71550,54 +71478,54 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71616,30 +71544,32 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71648,16 +71578,20 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71676,30 +71610,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71708,16 +71644,20 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71736,54 +71676,54 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71802,30 +71742,32 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71834,16 +71776,20 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71862,30 +71808,32 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71894,16 +71842,20 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71922,54 +71874,54 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71988,30 +71940,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72020,16 +71974,20 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72048,30 +72006,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72080,16 +72040,20 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72108,54 +72072,54 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72174,30 +72138,32 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72206,16 +72172,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72234,30 +72204,32 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72266,16 +72238,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72294,54 +72270,54 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72360,30 +72336,32 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72392,16 +72370,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72420,30 +72402,32 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72452,16 +72436,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72480,54 +72468,54 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72546,30 +72534,32 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72578,16 +72568,20 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72606,30 +72600,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72638,16 +72634,20 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72666,54 +72666,50 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72732,30 +72728,32 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72764,16 +72762,16 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72792,30 +72790,32 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72824,16 +72824,16 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72852,54 +72852,50 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72918,30 +72914,32 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72950,16 +72948,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72978,30 +72976,32 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73010,16 +73010,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73038,54 +73038,50 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -73104,48 +73100,50 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -73164,30 +73162,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73196,16 +73196,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73224,54 +73224,50 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73290,48 +73286,50 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -73350,48 +73348,50 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -73410,54 +73410,50 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73476,30 +73472,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73508,16 +73506,16 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73536,48 +73534,50 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -73596,54 +73596,50 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -73662,30 +73658,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73694,16 +73692,16 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73722,30 +73720,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73754,16 +73754,16 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73782,19 +73782,19 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ From b73f258e352c1cf037cb9e61131513263aabe56a Mon Sep 17 00:00:00 2001 From: CCBC Service Account <116113628+ccbc-service-account@users.noreply.github.com> Date: Fri, 18 Oct 2024 23:20:25 +0000 Subject: [PATCH 14/14] chore: release v1.201.0 --- CHANGELOG.md | 7 +++++++ db/sqitch.plan | 1 + package.json | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ef4c76962..b3f35fd384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.201.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.200.0...v1.201.0) (2024-10-18) + +### Features + +- show template 9 data in summary page ([d9e4580](https://github.com/bcgov/CONN-CCBC-portal/commit/d9e4580a7a17f7cc11ced8fbe3804d19bb0f2629)) +- template 9 data from application and rfi ([ba78a11](https://github.com/bcgov/CONN-CCBC-portal/commit/ba78a11ca6f7c762333ff86f4a6f997960269563)) + # [1.200.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.199.0...v1.200.0) (2024-10-18) ### Features diff --git a/db/sqitch.plan b/db/sqitch.plan index 438750c7a2..90d384d8d5 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -710,3 +710,4 @@ clean_pre_cut_over_cbc_history 2024-10-15T23:26:47Z ,,, # R @1.199.0 2024-10-18T16:28:05Z CCBC Service Account # release v1.199.0 @1.200.0 2024-10-18T16:44:25Z CCBC Service Account # release v1.200.0 tables/application_form_template_9_data 2024-09-25T22:50:17Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # create table for form template 9 data +@1.201.0 2024-10-18T23:20:23Z CCBC Service Account # release v1.201.0 diff --git a/package.json b/package.json index 424abbecab..195efe81ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "CONN-CCBC-portal", - "version": "1.200.0", + "version": "1.201.0", "main": "index.js", "repository": "https://github.com/bcgov/CONN-CCBC-portal.git", "author": "Romer, Meherzad CITZ:EX ",